react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 443 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDeleteBinFill = 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 1zm-8 5v6h2v-6zm4 0v6h2v-6zM9 4v2h6V4z" />
</Svg>
);
export default SvgDeleteBinFill;