Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import { BoxProps, StackProps } from "@mui/material";
export type TToolbarAction = {
content: React.ReactNode;
onClick: () => void;
hidden?: boolean;
disabled?: boolean;
tooltipProps?: { show: boolean; message: string };
label: string;
};
export type PreviewSlotsProps = {
Container?: StackProps;
ContentWrapper?: BoxProps;
};
export type PreviewToolbar = {
primary: Omit<TToolbarAction, "onClick" | "tooltipProps" | "label">;
secondary?: TToolbarAction[];
};
|