From 2f25f6ba12dc976cd12dfd9c5eaa907aba7f7d35 Mon Sep 17 00:00:00 2001 From: Andrew Holloway Date: Wed, 15 May 2024 11:51:07 -0500 Subject: [PATCH] chore: export types for InputPropsV2 --- src/components/Input/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Input/index.ts b/src/components/Input/index.ts index b65056e50..81e5d2cfd 100644 --- a/src/components/Input/index.ts +++ b/src/components/Input/index.ts @@ -1,3 +1,3 @@ export { Input as default } from './Input'; export type { InputProps } from './Input'; -export { Input as InputV2, InputProps as InputPropsV2 } from './Input-v2'; +export { Input as InputV2, type InputProps as InputPropsV2 } from './Input-v2';