feature/project-redesign #28

Merged
ilia merged 88 commits from feature/project-redesign into main 2026-03-02 19:46:39 +00:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit b891f4c64b - Show all commits

View File

@@ -0,0 +1,4 @@
export { default as Button } from './Button.svelte';
export { default as ButtonGroup } from './ButtonGroup.svelte';
export { default as IconButton } from './IconButton.svelte';
export { default as ToggleButton } from './ToggleButton.svelte';

View File

@@ -0,0 +1,3 @@
export type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'outline' | 'icon';
export type ButtonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
export type IconPosition = 'left' | 'right';