Card
type Card = { asForm?: boolean; background?: string | ThemeColor; cancel?: CardAction; children: WidgetComponent[]; collapsed?: boolean; confirm?: CardAction; id?: string; key?: string; padding?: number | string | Spacing; size?: 'sm' | 'md' | 'lg' | 'full'; status?: WidgetStatus; theme?: 'light' | 'dark'; type: 'Card';};
Properties
Section titled “Properties”asForm?
Section titled “asForm?”optional asForm: boolean;
background?
Section titled “background?”optional background: | string | ThemeColor;
cancel?
Section titled “cancel?”optional cancel: CardAction;
children
Section titled “children”children: WidgetComponent[];
collapsed?
Section titled “collapsed?”optional collapsed: boolean;
confirm?
Section titled “confirm?”optional confirm: CardAction;
optional id: string;
optional key: string;
padding?
Section titled “padding?”optional padding: | number | string | Spacing;
optional size: "sm" | "md" | "lg" | "full";
status?
Section titled “status?”optional status: WidgetStatus;
theme?
Section titled “theme?”optional theme: "light" | "dark";
type: 'Card';