BoxBaseProps
type BoxBaseProps = { align?: Alignment; background?: string | ThemeColor; border?: number | Border | Borders; children?: WidgetComponent[]; flex?: number | string; gap?: number | string; justify?: Justification; padding?: number | string | Spacing; wrap?: 'nowrap' | 'wrap' | 'wrap-reverse';} & BlockProps;
Type Declaration
Section titled “Type Declaration”align?
Section titled “align?”optional align: Alignment;
background?
Section titled “background?”optional background: | string | ThemeColor;
border?
Section titled “border?”optional border: | number | Border | Borders;
children?
Section titled “children?”optional children: WidgetComponent[];
optional flex: number | string;
optional gap: number | string;
justify?
Section titled “justify?”optional justify: Justification;
padding?
Section titled “padding?”optional padding: | number | string | Spacing;
optional wrap: "nowrap" | "wrap" | "wrap-reverse";