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