UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 365 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFunctions(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M5 18l7.68-6L5 6V4h14v2H8.263L16 12l-7.737 6H19v2H5v-2z" /> </Svg> ); } export default SvgFunctions;