@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 851 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M9 6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6H9ZM7 6H4C3.44772 6 3 6.44772 3 7V21C3 21.5523 3.44772 22 4 22H20C20.5523 22 21 21.5523 21 21V7C21 6.44772 20.5523 6 20 6H17C17 3.23858 14.7614 1 12 1C9.23858 1 7 3.23858 7 6ZM9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10H17C17 12.7614 14.7614 15 12 15C9.23858 15 7 12.7614 7 10H9Z"/>
</Svg>);
};
Icon.displayName = 'ShoppingBag4Fill';
/**
* Remix Icon: Shopping Bag 4 Fill
* @see {@link https://remixicon.com/icon/shopping-bag-4-fill Remix Icon Docs}
*/
export const ShoppingBag4Fill = memo(Icon);