UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 402 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTerminalLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M11 12l-7.071 7.071-1.414-1.414L8.172 12 2.515 6.343 3.929 4.93 11 12zm0 7h10v2H11v-2z" /> </Svg> ); } export default SvgTerminalLine;