feature/project-redesign #28

Merged
ilia merged 88 commits from feature/project-redesign into main 2026-03-02 19:46:39 +00:00
Showing only changes of commit f134a343be - Show all commits

View File

@@ -0,0 +1,9 @@
export type InputVariant = 'default' | 'underline' | 'filled';
export type InputSize = 'sm' | 'md' | 'lg' | 'xl';
/** Convenience map for consumers sizing icons to match the input. */
export const inputIconSize: Record<InputSize, number> = {
sm: 14,
md: 16,
lg: 18,
xl: 20,
};