UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 459 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgShirtFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M7 4v7l5-2.5 5 2.5V4h3a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V5a1 1 0 011-1h3zm5 4L7.5 3h9L12 8zm1 3.236l-1-.5-1 .5V20h2v-8.764zM15 14v2h4v-2h-4z" /> </Svg> ); } export default SvgShirtFill;