(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function ClipboardIcon(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="M3.5 6v10a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1l-.447.894A2 2 0 0 1 11.263 6H8.737a2 2 0 0 1-1.789-1.106L6.5 4h-1a2 2 0 0 0-2 2Z" |
| 9 | /> |
| 10 | <path |
| 11 | strokeLinecap="round" |
| 12 | strokeLinejoin="round" |
| 13 | d="m13.5 4-.447.894A2 2 0 0 1 11.263 6H8.737a2 2 0 0 1-1.789-1.106L6.5 4l.724-1.447A1 1 0 0 1 8.118 2h3.764a1 1 0 0 1 .894.553L13.5 4Z" |
| 14 | /> |
| 15 | </svg> |
| 16 | ) |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected