Skip to content

Box

type Box = {
direction?: 'row' | 'col';
id?: string;
key?: string;
type: 'Box';
} & BoxBaseProps;
optional direction: "row" | "col";
optional id: string;
optional key: string;
type: 'Box';