react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 402 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDeleteBin7Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M17 6h5v2h-2v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H2V6h5V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1zm1 2H6v12h12zM9 4v2h6V4z" />
</Svg>
);
export default SvgDeleteBin7Line;