feat(Input): create index file with type exports

This commit is contained in:
Ilia Mashkov
2026-02-18 17:35:26 +03:00
parent 5867028be6
commit 8f4faa3328

View File

@@ -0,0 +1,13 @@
import type { ComponentProps } from 'svelte';
import Input from './Input.svelte';
type InputProps = ComponentProps<typeof Input>;
type InputSize = InputProps['size'];
type InputVariant = InputProps['variant'];
export {
Input,
type InputProps,
type InputSize,
type InputVariant,
};