UNPKG

@wulperstudio/cms

Version:
16 lines (15 loc) 397 B
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>; }