@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 681 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="M6.005 9h13.938l.5-2H8.005V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5.004a1 1 0 0 1-1-1V4h-2V2h3a1 1 0 0 1 1 1zm0 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4m12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4"/>
</Svg>);
});
Icon.displayName = 'ShoppingCartFill';
/**
* Remix Icon: Shopping Cart Fill
* @see {@link https://remixicon.com/icon/shopping-cart-fill Remix Icon Docs}
*/
export const ShoppingCartFill = Icon;