From f134a343bef1b198478a7005b68ea98d801c97f7 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Wed, 25 Feb 2026 10:00:18 +0300 Subject: [PATCH] chore(Import): add separate files for Import types --- src/shared/ui/Input/types.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/shared/ui/Input/types.ts diff --git a/src/shared/ui/Input/types.ts b/src/shared/ui/Input/types.ts new file mode 100644 index 0000000..9947652 --- /dev/null +++ b/src/shared/ui/Input/types.ts @@ -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 = { + sm: 14, + md: 16, + lg: 18, + xl: 20, +};