UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 450 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgShareBoxFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M10 3v2H5v14h14v-5h2v6a1 1 0 01-1 1H4a1 1 0 01-1-1V4a1 1 0 011-1h6zm7.707 4.707L12 13.414 10.586 12l5.707-5.707L13 3h8v8l-3.293-3.293z" /> </Svg> ); } export default SvgShareBoxFill;