react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 415 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDeleteBin4Line(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M20 7v14a1 1 0 01-1 1H5a1 1 0 01-1-1V7H2V5h20v2h-2zM6 7v13h12V7H6zm1-5h10v2H7V2zm4 8h2v7h-2v-7z" />
</Svg>
);
}
export default SvgDeleteBin4Line;