diff --git a/src/components/Dropdown/index.tsx b/src/components/Dropdown/index.tsx index 915a928..3b47850 100644 --- a/src/components/Dropdown/index.tsx +++ b/src/components/Dropdown/index.tsx @@ -1 +1,2 @@ export { default as Dropdown } from "./Dropdown"; +export type { IDropdownProps } from "./types"; diff --git a/src/components/RadioButton/index.tsx b/src/components/RadioButton/index.tsx index b8c8397..9348c83 100644 --- a/src/components/RadioButton/index.tsx +++ b/src/components/RadioButton/index.tsx @@ -1 +1,2 @@ export { default as RadioButton } from "./RadioButton"; +export type { IRadioButtonProps } from "./types"; diff --git a/src/components/Table/index.tsx b/src/components/Table/index.tsx index 6c9ff96..00ddf46 100644 --- a/src/components/Table/index.tsx +++ b/src/components/Table/index.tsx @@ -1 +1,2 @@ export { default as Table } from "./Table"; +export type { ITableHeader, ITableProps } from "./types"; diff --git a/src/components/Tabs/index.tsx b/src/components/Tabs/index.tsx index 32e5c54..0f08a9c 100644 --- a/src/components/Tabs/index.tsx +++ b/src/components/Tabs/index.tsx @@ -1 +1,2 @@ export { default as Tabs } from "./Tabs"; +export type { ITabsProps } from "./types";