fui-fancyui
Version:
FancyUI Libary
16 lines (15 loc) • 452 B
TypeScript
import { TBreakpoint } from '../../../types/TBreakPoint';
import { TSpacings } from '../../../types/TSpacings';
export type TGridAreasBreakpoints = {
[key: string]: string[];
};
export type TFancyGridTemplate = {
gridAreas: string[];
gridAreasBreakPoints?: TGridAreasBreakpoints;
children?: React.ReactNode;
gapColumn?: TSpacings;
gapRow?: TSpacings;
width?: string;
height?: string;
breakPoints?: TBreakpoint[];
};