mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
export interface IEmptyStateProps {
|
|
header?: JSX.Element | string;
|
|
info?: JSX.Element | string;
|
|
additionalInfo?: JSX.Element | string;
|
|
className?: string;
|
|
primaryButton?: JSX.Element;
|
|
secondaryButton?: JSX.Element;
|
|
}
|