(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function FolderIcon(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="M17.5 15.5v-8a2 2 0 0 0-2-2h-2.93a2 2 0 0 1-1.664-.89l-.812-1.22A2 2 0 0 0 8.43 2.5H4.5a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2Z" |
| 9 | /> |
| 10 | <path |
| 11 | strokeWidth="0" |
| 12 | d="M8.43 2.5H4.5a2 2 0 0 0-2 2v1h9l-1.406-2.11A2 2 0 0 0 8.43 2.5Z" |
| 13 | /> |
| 14 | <path |
| 15 | fill="none" |
| 16 | strokeLinecap="round" |
| 17 | strokeLinejoin="round" |
| 18 | d="m11.5 5.5-1.406-2.11A2 2 0 0 0 8.43 2.5H4.5a2 2 0 0 0-2 2v1h9Zm0 0h2" |
| 19 | /> |
| 20 | </svg> |
| 21 | ) |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected