23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
|
export const SetupProgress = () => (
|
||
|
<svg
|
||
|
className="setup-progress"
|
||
|
width="18"
|
||
|
height="18"
|
||
|
viewBox="0 0 24 24"
|
||
|
fill="none"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
>
|
||
|
<path
|
||
|
d="M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z"
|
||
|
stroke="#DCDCDE"
|
||
|
strokeWidth="2"
|
||
|
/>
|
||
|
<path
|
||
|
d="M4 12V12C4 16.4183 7.58172 20 12 20V20C16.4183 20 20 16.4183 20 12V12C20 7.58172 16.4183 4 12 4V4"
|
||
|
// stroke="#1E1E1E"
|
||
|
strokeWidth="2"
|
||
|
strokeLinecap="round"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|