@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 734 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M4.004 6.417.762 3.174 2.176 1.76l3.243 3.243H20.66a1 1 0 0 1 .958 1.287l-2.4 8a1 1 0 0 1-.958.713H6.004v2h11v2h-12a1 1 0 0 1-1-1zm2 .586v6h11.512l1.8-6zm-.5 16a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m12 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3"/>
</Svg>);
});
Icon.displayName = 'ShoppingCart2Line';
/**
* Remix Icon: Shopping Cart 2 Line
* @see {@link https://remixicon.com/icon/shopping-cart-2-line Remix Icon Docs}
*/
export const ShoppingCart2Line = Icon;