From 10cc9e2b9740cc20b86d194595383068dffd2dbd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 10:41:34 +0000 Subject: [PATCH] Update src/components/ui/ActiveBadge.tsx --- src/components/ui/ActiveBadge.tsx | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/components/ui/ActiveBadge.tsx b/src/components/ui/ActiveBadge.tsx index 1a9c0ea..e69de29 100644 --- a/src/components/ui/ActiveBadge.tsx +++ b/src/components/ui/ActiveBadge.tsx @@ -1,22 +0,0 @@ -import { cls } from "@/lib/utils"; - -interface ActiveBadgeProps { - text: string; - className?: string; -} - -const ActiveBadge = ({ text, className }: ActiveBadgeProps) => { - return ( -
- -

{text}

-
- ); -}; - -export default ActiveBadge;