feat: add badge card avatar alert and progress

This commit is contained in:
2026-03-19 17:24:22 +08:00
parent 063179933c
commit cb15b46b0c
23 changed files with 1342 additions and 0 deletions
+59
View File
@@ -1,5 +1,56 @@
export {
Alert,
AlertDescription,
AlertTitle,
type AlertDescriptionProps,
type AlertProps,
type AlertTitleProps
} from "./components/alert";
export {
alertDescriptionVariants,
alertIconVariants,
alertTitleVariants,
alertVariants
} from "./components/alert.variants";
export {
Avatar,
AvatarFallback,
AvatarImage,
type AvatarFallbackProps,
type AvatarImageProps,
type AvatarProps
} from "./components/avatar";
export {
avatarFallbackVariants,
avatarImageVariants,
avatarVariants
} from "./components/avatar.variants";
export { Badge, type BadgeProps } from "./components/badge";
export { badgeVariants } from "./components/badge.variants";
export { Button, type ButtonProps } from "./components/button";
export { buttonVariants } from "./components/button.variants";
export {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
type CardContentProps,
type CardDescriptionProps,
type CardFooterProps,
type CardHeaderProps,
type CardProps,
type CardTitleProps
} from "./components/card";
export {
cardContentVariants,
cardDescriptionVariants,
cardFooterVariants,
cardHeaderVariants,
cardTitleVariants,
cardVariants
} from "./components/card.variants";
export { Checkbox, type CheckboxProps } from "./components/checkbox";
export { checkboxVariants } from "./components/checkbox.variants";
export {
@@ -79,6 +130,14 @@ export {
type PopoverContentProps
} from "./components/popover";
export { popoverContentVariants } from "./components/popover.variants";
export {
Progress,
type ProgressProps
} from "./components/progress";
export {
progressIndicatorVariants,
progressVariants
} from "./components/progress.variants";
export {
RadioGroup,
RadioGroupItem,