react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 433 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"
width={24}
height={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;