@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
16 lines (15 loc) • 397 B
TypeScript
import { SxProps, Theme, TypographyProps } from '@mui/material';
export interface ColumnModel {
text: string;
position: string;
weight?: string;
color?: string;
size?: string;
typographyProps?: TypographyProps;
}
export interface ListRowPropsModel {
columns: Array<ColumnModel>;
hideDividerTop?: boolean;
hideDividerBottom?: boolean;
sx?: SxProps<Theme>;
}