base done
This commit is contained in:
25
src/components/icons/CheckCircle.tsx
Normal file
25
src/components/icons/CheckCircle.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
export default function CheckCircle(props: {
|
||||
strokeWidth: number;
|
||||
height: number;
|
||||
width: number;
|
||||
fillColor: string | null;
|
||||
strokeColor: string | null;
|
||||
}) {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill={props.fillColor || "none"}
|
||||
viewBox="0 0 24 24"
|
||||
strokeWidth={props.strokeWidth}
|
||||
stroke={props.strokeColor || "currentColor"}
|
||||
height={props.height}
|
||||
width={props.width}
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user