40 lines
1000 B
JavaScript
40 lines
1000 B
JavaScript
function LogoutOrangeP() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
className="min-w-[20px] min-h-[20px] max-w-[20px] max-h-[20px]"
|
|
>
|
|
<path
|
|
d="M14.5334 12.1837L16.6668 10.0503L14.5334 7.91699"
|
|
stroke="#F17732"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M8.1333 10.0498H16.6083"
|
|
stroke="#F17732"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M9.79997 16.6663C6.11663 16.6663 3.1333 14.1663 3.1333 9.99967C3.1333 5.83301 6.11663 3.33301 9.79997 3.33301"
|
|
stroke="#F17732"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default LogoutOrangeP;
|