(props: React.ComponentPropsWithoutRef<'svg'>)
| 1 | export function CopyIcon(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="M14.5 5.5v-1a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h1" |
| 9 | /> |
| 10 | <path |
| 11 | strokeLinecap="round" |
| 12 | strokeLinejoin="round" |
| 13 | d="M5.5 7.5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8Z" |
| 14 | /> |
| 15 | </svg> |
| 16 | ) |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected