mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import { IconNames } from "components/icons";
|
|
|
|
export interface IEmptyTableProps {
|
|
iconName?: IconNames;
|
|
header?: JSX.Element | string;
|
|
info?: JSX.Element | string;
|
|
additionalInfo?: JSX.Element | string;
|
|
className?: string;
|
|
primaryButton?: JSX.Element;
|
|
secondaryButton?: JSX.Element;
|
|
}
|