explit/app/icons/Check.tsx

21 lines
701 B
TypeScript

const Check = ({ className }: { className?: string }) => (
<svg
height="24"
version="1.1"
viewBox="0 0 512 512"
width="24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<g>
<path d="M340.1,177.3L215.3,303l-47.2-47.2l-17.8,17.8l56,56c2.5,2.5,5.9,4.5,8.9,4.5s6.3-2,8.8-4.4l133.7-134.4L340.1,177.3z" />
<g>
<path d="M256,48C141.1,48,48,141.1,48,256s93.1,208,208,208c114.9,0,208-93.1,208-208S370.9,48,256,48z M256,446.7 c-105.1,0-190.7-85.5-190.7-190.7c0-105.1,85.5-190.7,190.7-190.7c105.1,0,190.7,85.5,190.7,190.7 C446.7,361.1,361.1,446.7,256,446.7z" />
</g>
</g>
</svg>
);
export default Check;