Explicit width and height accepted by framework adapters.
Variants 2
{ height: number | string; fill?: never }{ fill: true; height?: never }Declaration
View full TypeScript declaration
export type GridSizeProps = | { height: number | string; fill?: never; } | { fill: true; height?: never; };