import { Button } from "@/src/components/ui/button"; import { cn } from "@/src/utils/tailwind"; import { TagIcon } from "lucide-react"; import React from "react"; export const TagButton: React.FC<{ tag: string; loading: boolean; viewOnly?: boolean; isTableCell?: boolean; }> = React.memo(({ tag, loading, viewOnly = false, isTableCell = false }) => ( )); TagButton.displayName = "TagButton";