27 lines
987 B
TypeScript
27 lines
987 B
TypeScript
export function Gavel({ className = '' }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="17"
|
|
height="16"
|
|
viewBox="0 0 17 16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g clipPath="url(#clip0_395_856)">
|
|
<path
|
|
d="M10.6018 8.33331L5.26846 13.6666C5.00325 13.9319 4.64353 14.0809 4.26846 14.0809C3.89339 14.0809 3.53368 13.9319 3.26846 13.6666C3.00325 13.4014 2.85425 13.0417 2.85425 12.6666C2.85425 12.2916 3.00325 11.9319 3.26846 11.6666L8.6018 6.33331M11.6016 10.6666L15.6016 6.66665M6.26831 5.33331L10.2683 1.33331M6.93498 4.66665L12.2683 9.99998M14.935 7.33331L9.60164 1.99998"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_395_856">
|
|
<rect width="16" height="16" fill="white" transform="translate(0.935059)" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|