interactive / components /icons /CheckIcon.tsx
caustino's picture
Upload 20 files
bb8c446 verified
Raw
History Blame Contribute Delete
367 Bytes
import React from 'react';
export const CheckIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={3} stroke="currentColor" className="w-4 h-4 text-white" {...props}>
<path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12.75l6 6 9-13.5" />
</svg>
);