(props: React.ComponentPropsWithoutRef<'svg'>)
| 4 | import { Transition } from '@headlessui/react'; |
| 5 | |
| 6 | function CheckIcon(props: React.ComponentPropsWithoutRef<'svg'>) { |
| 7 | return ( |
| 8 | <svg viewBox="0 0 20 20" aria-hidden="true" {...props}> |
| 9 | <circle cx="10" cy="10" r="10" strokeWidth="0" /> |
| 10 | <path |
| 11 | fill="none" |
| 12 | strokeLinecap="round" |
| 13 | strokeLinejoin="round" |
| 14 | strokeWidth="1.5" |
| 15 | d="m6.75 10.813 2.438 2.437c1.218-4.469 4.062-6.5 4.062-6.5" |
| 16 | /> |
| 17 | </svg> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | function FeedbackButton( |
| 22 | props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'> |
nothing calls this directly
no outgoing calls
no test coverage detected