Source: assets/icons/LogoutIcon.js

import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
import { View } from 'react-native';

const SvgComponent = props => (
  <Svg viewBox="0 0 24 24" fill="currentColor" {...props}>
    <Path d="M0 0h24v24H0z" fill="none" />
    <Path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z" />
  </Svg>
);

/**
 * Logout icon created from SVG from Fixrate.
 * Used in the logout-button.
 * Imported in NotificationSettings.js.
 * Code is generated through https://react-svgr.com/playground/?native=true
 * @memberof module:Components
 * @param {styleObject} props
 */
const LogoutIcon = props => {
  const { style } = props;
  const component = SvgComponent(style);

  return <View style={style}>{component}</View>;
};

export default LogoutIcon;