({ className }: IconProps)
| 5 | } |
| 6 | |
| 7 | export default function Icon({ className }: IconProps) { |
| 8 | return ( |
| 9 | <svg |
| 10 | xmlns="http://www.w3.org/2000/svg" |
| 11 | fill="none" |
| 12 | viewBox="0 0 24 24" |
| 13 | strokeWidth={1.5} |
| 14 | className={classNames("stroke-current", className)} |
| 15 | > |
| 16 | <path |
| 17 | strokeLinecap="round" |
| 18 | strokeLinejoin="round" |
| 19 | d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" |
| 20 | /> |
| 21 | </svg> |
| 22 | ); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected