Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 1x 1x 1x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 1x 1x 1x | import { SVGProps } from 'react';
const LogoutIcon = (props: SVGProps<SVGSVGElement>) => (
<svg
className="fill-current"
width="22"
height="22"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M8.25 1.83334C6.36104 1.83334 4.83333 3.36105 4.83333 5.25001V16.75C4.83333 18.639 6.36104 20.1667 8.25 20.1667H13.75C15.639 20.1667 17.1667 18.639 17.1667 16.75V14.6667C17.1667 14.2065 16.7936 13.8333 16.3333 13.8333C15.8731 13.8333 15.5 14.2065 15.5 14.6667V16.75C15.5 17.7165 14.7165 18.5 13.75 18.5H8.25C7.28351 18.5 6.5 17.7165 6.5 16.75V5.25001C6.5 4.28351 7.28351 3.50001 8.25 3.50001H13.75C14.7165 3.50001 15.5 4.28351 15.5 5.25001V7.33334C15.5 7.79358 15.8731 8.16668 16.3333 8.16668C16.7936 8.16668 17.1667 7.79358 17.1667 7.33334V5.25001C17.1667 3.36105 15.639 1.83334 13.75 1.83334H8.25Z"
fill=""
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M13.9107 7.41075C14.2361 7.08537 14.7638 7.08537 15.0892 7.41075L18.5892 10.9108C18.9146 11.2361 18.9146 11.7639 18.5892 12.0893L15.0892 15.5893C14.7638 15.9146 14.2361 15.9146 13.9107 15.5893C13.5853 15.2639 13.5853 14.7361 13.9107 14.4108L16.1548 12.1667H10.5C10.0398 12.1667 9.66667 11.7936 9.66667 11.3333C9.66667 10.8731 10.0398 10.5 10.5 10.5H16.1548L13.9107 8.25593C13.5853 7.93055 13.5853 7.40613 13.9107 7.41075Z"
fill=""
/>
</svg>
);
export default LogoutIcon;
|