diff --git a/src/index.ts b/src/index.ts index bf70041772e3e24578c164cf5e1703289ac8ec7b..386f431ae56ab273013d45b3f5c67e0e8ef2c1e2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ // Can not use absolute imports here; will break distribution of types -export { default as Alert } from "./components/Alert"; +export { default as Alert, type AlertProps } from "./components/Alert"; export { default as Badge } from "./components/Badge"; export { default as Breadcrumb } from "./components/Breadcrumb"; export { default as Button } from "./components/Button"; @@ -26,3 +26,4 @@ export { default as TextArea } from "./components/TextArea"; export { default as TextInput } from "./components/TextInput"; export { default as Toggle } from "./components/Toggle"; export { default as Typography } from "./components/Typography"; +export type { baseColorType, ColorType, TextColorType } from "./components/utils/colors" \ No newline at end of file