| 8 | } from '@chakra-ui/react' |
| 9 | |
| 10 | interface Props |
| 11 | extends Omit<TooltipProps, 'label' | 'aria-label' | 'children' | 'onClick'> { |
| 12 | icon: IconButtonProps['icon'] |
| 13 | label: string |
| 14 | as?: As |
| 15 | isLoading?: boolean |
| 16 | onClick?: IconButtonProps['onClick'] |
| 17 | colorScheme?: IconButtonProps['colorScheme'] |
| 18 | } |
| 19 | |
| 20 | const ActionButton = ({ |
| 21 | icon, |
nothing calls this directly
no outgoing calls
no test coverage detected