17 lines
596 B
TypeScript
17 lines
596 B
TypeScript
import { FC } from 'react';
|
|
|
|
interface IconCircleCheckProps {
|
|
className?: string;
|
|
}
|
|
|
|
const IconCircleCheck: FC<IconCircleCheckProps> = ({ className }) => {
|
|
return (
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
|
|
<circle opacity="0.5" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="1.5" />
|
|
<path d="M8.5 12.5L10.5 14.5L15.5 9.5" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default IconCircleCheck;
|