mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
26 lines
1.5 KiB
TypeScript
26 lines
1.5 KiB
TypeScript
import type { SVGProps } from 'react'
|
|
|
|
/**
|
|
* SimLogo icon component - filled version of the Sim brandmark using currentColor
|
|
* @param props - SVG properties including className, fill, etc.
|
|
*/
|
|
export function SimLogo(props: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
width='222'
|
|
height='222'
|
|
viewBox='0 0 222 222'
|
|
fill='currentColor'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
{...props}
|
|
>
|
|
<path
|
|
fillRule='evenodd'
|
|
clipRule='evenodd'
|
|
d='M107.822 93.7612C107.822 97.3481 106.403 100.792 103.884 103.328L103.523 103.692C101.006 106.236 97.5855 107.658 94.0236 107.658H13.4455C6.02456 107.658 0 113.718 0 121.191V208.332C0 215.806 6.02456 221.866 13.4455 221.866H99.9622C107.383 221.866 113.4 215.806 113.4 208.332V126.745C113.4 123.419 114.71 120.228 117.047 117.874C119.377 115.527 122.546 114.207 125.849 114.207H207.777C215.198 114.207 221.214 108.148 221.214 100.674V13.5333C221.214 6.05956 215.198 0 207.777 0H121.26C113.839 0 107.822 6.05956 107.822 13.5333V93.7612ZM134.078 18.55H194.952C199.289 18.55 202.796 22.0893 202.796 26.4503V87.7574C202.796 92.1178 199.289 95.6577 194.952 95.6577H134.078C129.748 95.6577 126.233 92.1178 126.233 87.7574V26.4503C126.233 22.0893 129.748 18.55 134.078 18.55Z'
|
|
/>
|
|
<path d='M207.878 129.57H143.554C135.756 129.57 129.434 135.937 129.434 143.791V207.784C129.434 215.638 135.756 222.005 143.554 222.005H207.878C215.677 222.005 221.999 215.638 221.999 207.784V143.791C221.999 135.937 215.677 129.57 207.878 129.57Z' />
|
|
</svg>
|
|
)
|
|
}
|