@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 492 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgExitOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path d="M320 176v-40a40 40 0 00-40-40H88a40 40 0 00-40 40v240a40 40 0 0040 40h192a40 40 0 0040-40v-40M384 176l80 80-80 80M191 256h273" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>;
}
export default SvgExitOutline;