Files
nobat724_front/components/icons/LogoutD.js
T

39 lines
953 B
JavaScript

function LogoutD({ active }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
>
<path
d="M17.4414 14.62L20.0014 12.06L17.4414 9.5"
stroke={active ? "#5559CE" : "#616161"}
strokeWidth="1.5"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.76172 12.06H19.9317"
stroke={active ? "#5559CE" : "#616161"}
strokeWidth="1.5"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.7617 20C7.34172 20 3.76172 17 3.76172 12C3.76172 7 7.34172 4 11.7617 4"
stroke={active ? "#5559CE" : "#616161"}
strokeWidth="1.5"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export default LogoutD;