({ size = 32 }: { size?: number })
| 65 | } |
| 66 | |
| 67 | export function CursorIcon({ size = 32 }: { size?: number }) { |
| 68 | return ( |
| 69 | <svg |
| 70 | width={size} |
| 71 | height={size} |
| 72 | viewBox="80 60 350 395" |
| 73 | fill="none" |
| 74 | xmlns="http://www.w3.org/2000/svg" |
| 75 | > |
| 76 | <path |
| 77 | d="m415.035 156.35-151.503-87.4695c-4.865-2.8094-10.868-2.8094-15.733 0l-151.4969 87.4695c-4.0897 2.362-6.6146 6.729-6.6146 11.459v176.383c0 4.73 2.5249 9.097 6.6146 11.458l151.5039 87.47c4.865 2.809 10.868 2.809 15.733 0l151.504-87.47c4.089-2.361 6.614-6.728 6.614-11.458v-176.383c0-4.73-2.525-9.097-6.614-11.459zm-9.516 18.528-146.255 253.32c-.988 1.707-3.599 1.01-3.599-.967v-165.872c0-3.314-1.771-6.379-4.644-8.044l-143.645-82.932c-1.707-.988-1.01-3.599.968-3.599h292.509c4.154 0 6.75 4.503 4.673 8.101h-.007z" |
| 78 | fill="#edecec" |
| 79 | /> |
| 80 | </svg> |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | export function LogoLockup({ height = 24 }: { height?: number }) { |
| 85 | const aspect = 1466 / 203; |
nothing calls this directly
no outgoing calls
no test coverage detected