| 14 | import { Button } from '../button/button'; |
| 15 | |
| 16 | export interface EmptyStateActionButton { |
| 17 | label: string; |
| 18 | onClick?: () => void; |
| 19 | icon?: React.ReactNode; |
| 20 | disabled?: boolean; |
| 21 | } |
| 22 | |
| 23 | export interface EmptyStateFooterAction { |
| 24 | label: string; |
nothing calls this directly
no outgoing calls
no test coverage detected