(props: React.ComponentPropsWithoutRef<'svg'>)
| 31 | } |
| 32 | |
| 33 | function InfoIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 34 | return ( |
| 35 | <svg viewBox="0 0 16 16" aria-hidden="true" {...props}> |
| 36 | <circle cx="8" cy="8" r="8" strokeWidth="0" /> |
| 37 | <path |
| 38 | fill="none" |
| 39 | strokeLinecap="round" |
| 40 | strokeLinejoin="round" |
| 41 | strokeWidth="1.5" |
| 42 | d="M6.75 7.75h1.5v3.5" |
| 43 | /> |
| 44 | <circle cx="8" cy="4" r=".5" fill="none" /> |
| 45 | </svg> |
| 46 | ) |
| 47 | } |
| 48 | |
| 49 | export function Note({ children }: { children: React.ReactNode }) { |
| 50 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected