| 9 | } from "~/components/ui/tooltip"; |
| 10 | |
| 11 | interface ActionButtonProps { |
| 12 | onClick: () => void; |
| 13 | icon: LucideIcon; |
| 14 | tooltipText: string; |
| 15 | disabled?: boolean; |
| 16 | text?: string; |
| 17 | loading?: boolean; |
| 18 | } |
| 19 | |
| 20 | export function ActionButton({ |
| 21 | onClick, |
nothing calls this directly
no outgoing calls
no test coverage detected