From 0ca5115d10a12bf62be6cef86e534fea9663f7aa Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Fri, 27 Feb 2026 12:25:25 +0300 Subject: [PATCH] feat(Button): add tertiary variant --- src/shared/ui/Button/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/ui/Button/types.ts b/src/shared/ui/Button/types.ts index 0c7ecd6..2d42e35 100644 --- a/src/shared/ui/Button/types.ts +++ b/src/shared/ui/Button/types.ts @@ -1,3 +1,3 @@ -export type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'outline' | 'icon'; +export type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'ghost' | 'outline' | 'icon'; export type ButtonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type IconPosition = 'left' | 'right';