mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +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;
|
|
}
|