From e1075c131fd0b804f9a014a8fdd75d94c8a31d34 Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Thu, 14 Apr 2022 15:32:27 -0400 Subject: [PATCH] fix: export OutlinedInputProps type in barrel --- striker-ui/components/OutlinedInput/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/striker-ui/components/OutlinedInput/index.tsx b/striker-ui/components/OutlinedInput/index.tsx index 181f02f9..37f2b05f 100644 --- a/striker-ui/components/OutlinedInput/index.tsx +++ b/striker-ui/components/OutlinedInput/index.tsx @@ -1,3 +1,5 @@ -import OutlinedInput from './OutlinedInput'; +import OutlinedInput, { OutlinedInputProps } from './OutlinedInput'; + +export type { OutlinedInputProps }; export default OutlinedInput;