mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
14 lines
353 B
TypeScript
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
|