Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
29 lines
1.9 KiB
XML
29 lines
1.9 KiB
XML
export default function VerifiedBadgeIcon({ className = 'size-5' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 16 16"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g clipPath="url(#clip0_700_5548)">
|
|
<path
|
|
clipRule="evenodd"
|
|
d="M5.62309 1.83764C6.30534 -0.552976 9.69332 -0.552976 10.3756 1.83764C10.5934 2.60108 11.3778 3.05392 12.1479 2.86089C14.5593 2.25642 16.2533 5.19049 14.5241 6.97665C13.9719 7.54705 13.9719 8.45273 14.5241 9.02314C16.2533 10.8093 14.5593 13.7434 12.1479 13.1389C11.3778 12.9459 10.5934 13.3987 10.3756 14.1621C9.69332 16.5528 6.30534 16.5528 5.62309 14.1621C5.40522 13.3987 4.62088 12.9459 3.85078 13.1389C1.43932 13.7434 -0.254668 10.8093 1.47454 9.02314C2.02676 8.45273 2.02676 7.54705 1.47454 6.97665C-0.254668 5.19049 1.43932 2.25642 3.85078 2.86089C4.62088 3.05392 5.40522 2.60108 5.62309 1.83764ZM11.0501 6.31999C11.2269 6.10785 11.1982 5.79257 10.9861 5.61579C10.774 5.43901 10.4587 5.46767 10.2819 5.67981L7.97287 8.45065C7.72567 8.74729 7.57387 8.92757 7.44881 9.04049C7.39082 9.09286 7.35642 9.11374 7.33993 9.12171C7.33658 9.12334 7.33419 9.12431 7.33268 9.12487C7.33117 9.12431 7.32879 9.12334 7.32544 9.12171C7.30895 9.11374 7.27455 9.09286 7.21655 9.04049C7.0915 8.92757 6.93969 8.74729 6.6925 8.45065L5.71679 7.27981C5.54001 7.06767 5.22473 7.03901 5.01259 7.21579C4.80045 7.39257 4.77179 7.70785 4.94857 7.91999L5.94557 9.11639C6.16455 9.37922 6.36196 9.61617 6.54635 9.78268C6.74698 9.96384 6.99969 10.1252 7.33268 10.1252C7.66568 10.1252 7.91838 9.96384 8.11901 9.78268C8.30341 9.61617 8.50081 9.37923 8.71979 9.1164L11.0501 6.31999Z"
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_700_5548">
|
|
<rect
|
|
fill="white"
|
|
height="16"
|
|
width="16"
|
|
/>
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
}
|