(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function CalendarIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 2 | return ( |
| 3 | <svg viewBox="0 0 20 20" aria-hidden="true" {...props}> |
| 4 | <path |
| 5 | fill="none" |
| 6 | strokeLinecap="round" |
| 7 | strokeLinejoin="round" |
| 8 | d="M2.5 6.5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-11a2 2 0 0 1-2-2v-9Z" |
| 9 | /> |
| 10 | <path |
| 11 | strokeLinecap="round" |
| 12 | strokeLinejoin="round" |
| 13 | d="M2.5 6.5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v2h-15v-2Z" |
| 14 | /> |
| 15 | <path |
| 16 | fill="none" |
| 17 | strokeLinecap="round" |
| 18 | strokeLinejoin="round" |
| 19 | d="M5.5 5.5v-3M14.5 5.5v-3" |
| 20 | /> |
| 21 | </svg> |
| 22 | ); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected