(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function InfoIcon(props: React.SVGProps<SVGSVGElement>) { |
| 3 | return ( |
| 4 | <svg viewBox="0 0 16 16" aria-hidden="true" {...props}> |
| 5 | <circle cx="8" cy="8" r="8" strokeWidth="0" /> |
| 6 | <path |
| 7 | fill="none" |
| 8 | strokeLinecap="round" |
| 9 | strokeLinejoin="round" |
| 10 | strokeWidth="1.5" |
| 11 | d="M6.75 7.75h1.5v3.5" |
| 12 | /> |
| 13 | <circle cx="8" cy="4" r=".5" fill="none" /> |
| 14 | </svg> |
| 15 | ); |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected