UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 537 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTrash(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M6.75 7.75l.841 9.673a2 2 0 001.993 1.827h4.832a2 2 0 001.993-1.827l.841-9.673M9.75 7.5v-.75a2 2 0 012-2h.5a2 2 0 012 2v.75M5 7.75h14" }))); } export default SvgTrash;