You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
444 B
18 lines
444 B
type GridLayout = { |
|
[id: string]: import('@mui/material').GridProps | undefined; |
|
}; |
|
|
|
type GridOptionalProps = { |
|
calculateItemBreakpoints?: ( |
|
index: number, |
|
key: string, |
|
) => Partial< |
|
Pick<import('@mui/material').GridProps, 'xs' | 'sm' | 'md' | 'lg' | 'xl'> |
|
>; |
|
wrapperBoxProps?: import('@mui/material').BoxProps; |
|
}; |
|
|
|
type GridProps = import('@mui/material').GridProps & |
|
GridOptionalProps & { |
|
layout: GridLayout; |
|
};
|
|
|