@buun_group/brutalist-ui
Version:
A brutalist-styled component library
25 lines (24 loc) • 1.24 kB
TypeScript
export { Button } from './button';
export { AspectRatio } from './aspect-ratio';
export { Card } from './card';
export { Input } from './input';
export { Badge } from './badge';
export { Alert } from './alert';
export { Checkbox } from './checkbox';
export { Avatar } from './avatar';
export { Progress } from './progress';
export { Spinner } from './spinner';
export { Separator } from './separator';
export { Skeleton } from './skeleton';
export type { ButtonProps } from './button/Button';
export type { AspectRatioProps } from './aspect-ratio/AspectRatio';
export type { CardProps, CardHeaderProps, CardBodyProps, CardFooterProps } from './card/Card';
export type { InputProps } from './input/Input';
export type { BadgeProps } from './badge/Badge';
export type { AlertProps, AlertIconProps, AlertContentProps, AlertTitleProps, AlertDescriptionProps, AlertActionsProps } from './alert/Alert';
export type { CheckboxProps } from './checkbox/Checkbox';
export type { AvatarProps } from './avatar/Avatar';
export type { ProgressProps } from './progress/Progress';
export type { SpinnerProps } from './spinner/Spinner';
export type { SeparatorProps } from './separator/Separator';
export type { SkeletonProps } from './skeleton/Skeleton';