fix(Input): change the way input types are exporting

This commit is contained in:
Ilia Mashkov
2026-02-15 23:22:44 +03:00
parent 6ba37c9e4a
commit f15114a78b
2 changed files with 17 additions and 8 deletions

View File

@@ -49,8 +49,8 @@ export const inputVariants = tv({
},
});
export type InputVariant = VariantProps<typeof inputVariants>['variant'];
export type InputSize = VariantProps<typeof inputVariants>['size'];
type InputVariant = VariantProps<typeof inputVariants>['variant'];
type InputSize = VariantProps<typeof inputVariants>['size'];
export type InputProps = {
/**