mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 01:47:23 +00:00
11 lines
300 B
TypeScript
11 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;
|
|
}
|