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