diff --git a/src/components/TextField/index.ts b/src/components/TextField/index.ts index a2cc4f0..15bf7c1 100644 --- a/src/components/TextField/index.ts +++ b/src/components/TextField/index.ts @@ -1,2 +1,5 @@ export { SimpleTextField } from './SimpleTextField/SimpleTextField'; export type { SimpleTextFieldProps } from './SimpleTextField/SimpleTextField.type'; + +export { SearchTextField } from './SearchTextField/SearchTextField'; +export type { SearchTextFieldProps } from './SearchTextField/SearchTextField.type'; diff --git a/src/components/index.ts b/src/components/index.ts index e3524fc..2f27ac1 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -27,3 +27,6 @@ export type { ToastProps, ToastDuration } from './Toast'; export { SimpleTextField } from './TextField'; export type { SimpleTextFieldProps } from './TextField'; + +export { SearchTextField } from './TextField'; +export type { SearchTextFieldProps } from './TextField';