diff --git a/src/components/ui/Tag.tsx b/src/components/ui/Tag.tsx index 7c0eaf6..e69de29 100644 --- a/src/components/ui/Tag.tsx +++ b/src/components/ui/Tag.tsx @@ -1,17 +0,0 @@ -import type { LucideIcon } from "lucide-react"; -import { cls } from "@/lib/utils"; - -interface TagProps { - text: string; - icon?: LucideIcon; - className?: string; -} - -const Tag = ({ text, icon: Icon, className = "" }: TagProps) => ( -
{text}
-