16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
// Buttons
|
|
export { Button } from "./buttons";
|
|
export type { ButtonProps } from "./buttons";
|
|
|
|
// Inputs
|
|
export { TextInput, Textarea } from "./inputs";
|
|
export type { TextInputProps, TextareaProps } from "./inputs";
|
|
|
|
// Typography
|
|
export { Heading, Text, Caption } from "./typography";
|
|
export type { HeadingProps, TextProps, CaptionProps } from "./typography";
|
|
|
|
// Dividers
|
|
export { Divider } from "./dividers";
|
|
export type { DividerProps } from "./dividers";
|