( props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'> )
| 19 | } |
| 20 | |
| 21 | function FeedbackButton( |
| 22 | props: Omit<React.ComponentPropsWithoutRef<'button'>, 'type' | 'className'> |
| 23 | ) { |
| 24 | return ( |
| 25 | <button |
| 26 | type="submit" |
| 27 | className="px-3 text-sm font-medium text-zinc-600 transition hover:bg-zinc-900/2.5 hover:text-zinc-900 dark:text-zinc-400 dark:hover:bg-white/5 dark:hover:text-white" |
| 28 | {...props} |
| 29 | /> |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | const FeedbackForm = forwardRef< |
| 34 | React.ElementRef<'form'>, |
nothing calls this directly
no outgoing calls
no test coverage detected