ComponentProps
interface ComponentProps {
children?: unknown;
className?: string;
disabled?: boolean;
id?: string;
style?: Record<string, string | number>;
visible?: boolean;
}Source: Component.ts:33
Component properties base interface
Properties
children: unknown
Child components or content
className: string
CSS class names
disabled: boolean
Whether component is disabled
id: string
Unique component identifier
style: Record<string, string | number>
Inline styles
visible: boolean
Whether component is visible