BasicRoot
type BasicRoot = { children: (WidgetComponent | WidgetRoot)[]; direction?: 'row' | 'col'; id?: string; key?: string; theme?: 'light' | 'dark'; type: 'Basic';} & Pick<BoxBaseProps, 'gap' | 'padding' | 'align' | 'justify'>;
Type Declaration
Section titled “Type Declaration”children
Section titled “children”children: ( | WidgetComponent | WidgetRoot)[];
direction?
Section titled “direction?”optional direction: "row" | "col";
optional id: string;
optional key: string;
theme?
Section titled “theme?”optional theme: "light" | "dark";
type: 'Basic';