feat(Button): add tertiary variant

This commit is contained in:
Ilia Mashkov
2026-02-27 12:25:25 +03:00
parent f8f295e5a0
commit 0ca5115d10

View File

@@ -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';