({ className }: IconProps)
| 5 | } |
| 6 | |
| 7 | export default function Icon({ className }: IconProps) { |
| 8 | return ( |
| 9 | <svg |
| 10 | xmlns="http://www.w3.org/2000/svg" |
| 11 | viewBox="0 0 24 24" |
| 12 | className={classNames("fill-current", className)} |
| 13 | > |
| 14 | <path |
| 15 | fillRule="evenodd" |
| 16 | d="M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 00-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z" |
| 17 | clipRule="evenodd" |
| 18 | /> |
| 19 | </svg> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected