| 2 | import {TooltipProps} from '@mui/material/Tooltip'; |
| 3 | |
| 4 | export interface CustomEmptyProps { |
| 5 | title?: string; |
| 6 | description?: string; |
| 7 | img?: string; |
| 8 | } |
| 9 | export interface CustomButtonProps extends Omit<TooltipProps, 'children'> { |
| 10 | label: string; |
| 11 | title?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected