10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
export { default as TextInput } from "./TextInput";
|
|
export { default as SearchInput } from "./SearchInput";
|
|
export { default as Textarea } from "./Textarea";
|
|
export type {
|
|
TextInputProps,
|
|
SearchInputProps,
|
|
TextareaProps,
|
|
LoginInputProps,
|
|
} from "./Input.types";
|