chore(Import): add separate files for Import types

This commit is contained in:
Ilia Mashkov
2026-02-25 10:00:18 +03:00
parent b891f4c64b
commit f134a343be

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,
};