mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
8162d052bf
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Manual QA for all new/changed functionality --------- Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import { GraphicNames } from "components/graphics";
|
|
|
|
export interface IEmptyTableProps {
|
|
graphicName?: GraphicNames;
|
|
header?: JSX.Element | string;
|
|
info?: JSX.Element | string;
|
|
additionalInfo?: JSX.Element | string;
|
|
className?: string;
|
|
primaryButton?: JSX.Element;
|
|
secondaryButton?: JSX.Element;
|
|
}
|