snort/src/Icons/Logout.tsx

24 lines
585 B
TypeScript
Raw Normal View History

import IconProps from "./IconProps";
2023-02-05 22:44:31 +00:00
const Logout = (props: IconProps) => {
return (
<svg
width="22"
height="20"
viewBox="0 0 22 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17 6L21 10M21 10L17 14M21 10H8M14 2.20404C12.7252 1.43827 11.2452 1 9.66667 1C4.8802 1 1 5.02944 1 10C1 14.9706 4.8802 19 9.66667 19C11.2452 19 12.7252 18.5617 14 17.796"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
2023-02-05 22:44:31 +00:00
export default Logout;