diff --git a/components/bounty/bounty-tags/view.tsx b/components/bounty/bounty-tags/view.tsx index c533c5a5cc..6bc2193449 100644 --- a/components/bounty/bounty-tags/view.tsx +++ b/components/bounty/bounty-tags/view.tsx @@ -2,15 +2,17 @@ import Badge from "components/badge"; interface BountyTagsProps { tags: string[]; + className?: string } export default function BountyTagsView({ - tags + tags, + className = "" }: BountyTagsProps) { if (!tags) return <>; return ( -
+
{tags.map((tag) => (
+ +
+ +
+
+
; } \ No newline at end of file