react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 540 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgShoppingBasket2Fill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M15.366 3.438L18.577 9H22v2h-1.167l-.757 9.083a1 1 0 01-.996.917H4.92a1 1 0 01-.996-.917L3.166 11H2V9h3.422l3.212-5.562 1.732 1L7.732 9h8.535l-2.633-4.562 1.732-1zM13 13h-2v4h2v-4zm-4 0H7v4h2v-4zm8 0h-2v4h2v-4z" />
</Svg>
);
}
export default SvgShoppingBasket2Fill;