From 4fcc65dc17fbd08bd304aa518f1d8be97f15ba7f Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Mon, 21 Jul 2025 21:25:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20Added=20Group=20comp?= =?UTF-8?q?onen=20interface=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/group/IVGroup.type.ts | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) 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; }