feat: add SrJuggernaut logo component

This commit is contained in:
2026-03-06 18:48:38 -06:00
parent e38871879c
commit 59fc3bf686

View File

@@ -0,0 +1,60 @@
import { css, cx } from '@styled-system/css'
import type { FC, SVGProps } from 'react'
export type SrJuggernautLogoProps = SVGProps<SVGSVGElement>
const SrJuggernautLogo: FC<SrJuggernautLogoProps> = ({
className,
...props
}) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 2250 1513"
className={cx(
css({ display: 'inline-block', fill: 'currentColor', height: 'auto' }),
className
)}
{...props}
>
<title>Sr Juggernaut Logo</title>
<g>
<path
d="M0 0v281.011L145.56 378.7l48.24 117.363-232.39-100.478 86.84 317.189L274.98 903.33s71.16-55.478 137.49-172.464V436.59Z"
transform="matrix(1.1293 0 0 -1.21035 1288.433 1375.722)"
/>
<path
d="M0 0v281.011L-145.554 378.7l-48.242 117.363L38.593 395.585l-86.835 317.189-226.736 190.556s-71.156-55.48-137.488-172.466V436.59Z"
transform="matrix(1.1293 0 0 -1.21035 969.733 1375.722)"
/>
<path
d="m0 0-194.55-164.022 66.71 253.269S-36.18 38.593 0 0"
transform="matrix(1.1293 0 0 -1.21035 1577.173 263.4)"
/>
<path
d="m0 0 194.55-164.022-66.709 253.269S36.181 38.593 0 0"
transform="matrix(1.1293 0 0 -1.21035 680.992 263.4)"
/>
<path
d="m0 0 68.44 50.654 183.32 677.795s-231.56 229.147-501.714 0c33.769-118.192 183.318-677.8 183.318-677.8z"
transform="matrix(1.1293 0 0 -1.21035 1129.428 1004.945)"
/>
<path
d="m0 0-26.533 74.78-410.054 446.234-2.412 168.845-156.785-118.192-125.429-69.95-108.543-106.132 173.669 28.945 176.083-94.071-14.473-50.654L-62.714-9.64Z"
transform="matrix(1.1293 0 0 -1.21035 937.045 1501.26)"
/>
<path
d="m0 0 26.54 74.77 410.05 446.236L439 689.851l156.79-118.192 125.42-69.95 108.55-106.131-173.67 28.944-176.08-94.071 14.47-50.653L62.72-9.65Z"
transform="matrix(1.1293 0 0 -1.21035 1312.95 1498.33)"
/>
<path
d="m0 0 28.58 66.523 141.73 75.024-22.24-58.489Z"
transform="matrix(1.1293 0 0 -1.21035 1262.03 997.935)"
/>
<path
d="m0 0-28.579 66.523-141.731 75.024 22.241-58.489z"
transform="matrix(1.1293 0 0 -1.21035 1012.487 1000.854)"
/>
</g>
</svg>
)
export default SrJuggernautLogo