mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
fix(identity): refine verified badge
Signed-off-by: Cea Stapleton Cordasco <261786559+cea-block@users.noreply.github.com>
This commit is contained in:
committed by
Cea Stapleton Cordasco
parent
3e761a7431
commit
923a592c3f
@@ -1,5 +1,3 @@
|
||||
import { BadgeCheck } from "lucide-react";
|
||||
|
||||
import { Tooltip, TooltipContent, TooltipTrigger } from "@/shared/ui/tooltip";
|
||||
|
||||
export function VerifiedBadge({ verifiedName }: { verifiedName: string }) {
|
||||
@@ -11,11 +9,24 @@ export function VerifiedBadge({ verifiedName }: { verifiedName: string }) {
|
||||
className="inline-flex shrink-0 items-center"
|
||||
data-testid="verified-corporate-identity"
|
||||
>
|
||||
<BadgeCheck
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
className="h-4 w-4 fill-blue-500 text-white"
|
||||
strokeWidth={3}
|
||||
/>
|
||||
className="h-4 w-4"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
className="fill-blue-500"
|
||||
d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"
|
||||
/>
|
||||
<path
|
||||
d="m8.75 12 2.1 2.1 4.4-4.4"
|
||||
stroke="white"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth="2.4"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent side="top">
|
||||
|
||||
Reference in New Issue
Block a user