Files
metabuilder/icons/react/fakemui/Logout.tsx
2026-03-09 22:30:41 +00:00

14 lines
353 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
/**
* Logout icon - represents sign out action
*/
export const Logout = (props: IconProps) => (
<Icon {...props}>
<path d="M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5-5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z" />
</Icon>
)
export default Logout