CheckIcon.jsx
1export function CheckIcon(props) {
2 return (
3 <svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
4 <path
5 strokeLinecap="round"
6 strokeLinejoin="round"
7 d="M10 1.5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17Z"
8 />
9 <path
10 fill="none"
11 strokeLinecap="round"
12 strokeLinejoin="round"
13 d="m7.5 10.5 2 2c1-3.5 3-5 3-5"
14 />
15 </svg>
16 )
17}