From 8f4faa3328c08b896777ba4a6e972c36b8a54825 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Wed, 18 Feb 2026 17:35:26 +0300 Subject: [PATCH] feat(Input): create index file with type exports --- src/shared/ui/Input/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/shared/ui/Input/index.ts diff --git a/src/shared/ui/Input/index.ts b/src/shared/ui/Input/index.ts new file mode 100644 index 0000000..68249c7 --- /dev/null +++ b/src/shared/ui/Input/index.ts @@ -0,0 +1,13 @@ +import type { ComponentProps } from 'svelte'; +import Input from './Input.svelte'; + +type InputProps = ComponentProps; +type InputSize = InputProps['size']; +type InputVariant = InputProps['variant']; + +export { + Input, + type InputProps, + type InputSize, + type InputVariant, +};