UNPKG

fui-fancyui

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