react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 556 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDeleteBin2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7 6V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3h5v2h-2v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H2V6zm6.414 8 1.768-1.768-1.414-1.414L12 12.586l-1.768-1.768-1.414 1.414L10.586 14l-1.768 1.768 1.414 1.414L12 15.414l1.768 1.768 1.414-1.414zM9 4v2h6V4z" />
</Svg>
);
export default SvgDeleteBin2Fill;