20 lines
591 B
TypeScript
20 lines
591 B
TypeScript
// Buttons
|
|
export { Button } from "./buttons";
|
|
export type { ButtonProps } from "./buttons";
|
|
|
|
// Inputs
|
|
export { TextInput, SearchInput, Textarea } from "./inputs";
|
|
export type { TextInputProps, SearchInputProps, TextareaProps } from "./inputs";
|
|
|
|
// Typography
|
|
export { Heading, Text, Caption } from "./typography";
|
|
export type { HeadingProps, TextProps, CaptionProps } from "./typography";
|
|
|
|
// Badges
|
|
export { Badge, PriceBadge } from "./badges";
|
|
export type { BadgeProps } from "./badges";
|
|
|
|
// Dividers
|
|
export { Divider } from "./dividers";
|
|
export type { DividerProps } from "./dividers";
|