From 6243f613360f1af258ac501583d6cd65a9eec12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Tue, 30 Jun 2026 12:05:49 +0000 Subject: [PATCH] chore(ui): remove unused badgeVariants export badgeVariants is a CVA variant definition used internally by the Badge component, but it is never imported by any other file in the project. Removing it from the export list keeps the public API surface minimal and consistent with similar cleanup PRs (dialog, dropdown-menu, sheet components). This is consistent with existing cleanup PRs: - #213, #207, #203 (dialog) - #201 (dropdown-menu) - #200 (sheet) --- src/components/ui/badge.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/badge.tsx b/src/components/ui/badge.tsx index a448338..36363d0 100644 --- a/src/components/ui/badge.tsx +++ b/src/components/ui/badge.tsx @@ -33,4 +33,4 @@ function Badge({ className, variant, ...props }: BadgeProps) { ) } -export { Badge, badgeVariants } +export { Badge }