From 3ad9a1762f42a71f74c5b66b168f3b8a6bac9306 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Sat, 19 Jul 2025 02:31:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20=20button=20interface?= =?UTF-8?q?=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/button/IVButton.type.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/button/IVButton.type.ts b/src/components/button/IVButton.type.ts index 9cfd0c7..353b839 100644 --- a/src/components/button/IVButton.type.ts +++ b/src/components/button/IVButton.type.ts @@ -1,9 +1,8 @@ import type { ButtonHTMLAttributes } from "vue" - /** * Interface representing the properties of a single button component. */ -export default interface IButton { +export default interface IVButton { /** Whether the button is disabled */ disabled?: boolean; @@ -44,12 +43,12 @@ export default interface IButton { /** * Interface representing a group of buttons with layout and style options. */ -export default interface IButtonGroup { +export default interface IVButtonGroup { /** * Array of buttons to display in the group. * Each button can include standard HTML button attributes. */ - buttons?: (IButton & ButtonHTMLAttributes)[]; + buttons?: (IVButton & ButtonHTMLAttributes)[]; /** Reverses the order of the buttons */ reverse?: boolean;