(props: React.SVGProps<SVGSVGElement>)
| 1 | export function LoadingIcon(props: React.SVGProps<SVGSVGElement>) { |
| 2 | return ( |
| 3 | <svg |
| 4 | className={props.className} |
| 5 | xmlns="http://www.w3.org/2000/svg" |
| 6 | width="26" |
| 7 | height="26" |
| 8 | viewBox="0 0 26 26" |
| 9 | fill="none" |
| 10 | > |
| 11 | <circle |
| 12 | cx="13" |
| 13 | cy="13" |
| 14 | r="10" |
| 15 | stroke="black" |
| 16 | strokeOpacity="0.3" |
| 17 | strokeWidth="4" |
| 18 | /> |
| 19 | <path |
| 20 | d="M13 23C7.47715 23 3 18.5228 3 13" |
| 21 | stroke="#4338CA" |
| 22 | strokeWidth="4" |
| 23 | strokeLinecap="round" |
| 24 | /> |
| 25 | </svg> |
| 26 | ); |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected