UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 763 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTrashOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path d="M112 112l20 320c.95 18.49 14.4 32 32 32h184c17.67 0 30.87-13.51 32-32l20-320" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Path stroke={props.fill} strokeLinecap="round" strokeMiterlimit={10} strokeWidth={32} d="M80 112h352" /><Path d="M192 112V72h0a23.93 23.93 0 0124-24h80a23.93 23.93 0 0124 24h0v40M256 176v224M184 176l8 224M328 176l-8 224" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>; } export default SvgTrashOutline;