🏷️ Added Group componen interface file

This commit is contained in:
Paul Valerie GOMA 2025-07-21 21:25:00 +02:00
parent 22f3881b41
commit 4fcc65dc17

View File

@ -2,18 +2,17 @@
* Interface representing the props for the Group component. * Interface representing the props for the Group component.
*/ */
export default interface IVGroup { export default interface IVGroup {
/** /**
* Defines the visual style or status of the group. * Defines the visual style or status of the group.
* - `'default'`: Standard appearance. * - `'default'`: Standard appearance.
* - `'error'`: Indicates an error state. * - `'error'`: Indicates an error state.
* - `'success'`: Indicates a successful state. * - `'success'`: Indicates a successful state.
* - `undefined`: No specific type applied. * - `undefined`: No specific type applied.
*/ */
type: 'default' | 'error' | 'success' | undefined; type: 'default' | 'error' | 'success' | undefined;
/**
/** * If true, disables the group component, making it non-interactive.
* If true, disables the group component, making it non-interactive. * Optional.
* Optional. */
*/ disabled?: boolean;
disabled?: boolean;
} }