@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 770 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 2h3.323l1.2 3H3v2h2.118l.827 14.059a1 1 0 0 0 .998.941h10.114a1 1 0 0 0 .998-.941L18.882 7H21V5H10.677l-2-5H4zm3.3 8.025L7.12 7h9.758l-.292 4.967c-2.307-.114-3.164-.475-4.216-.896-1.092-.436-2.4-.936-5.072-1.046m.117 2.008c2.304.114 3.172.48 4.223.9 1.06.424 2.316.905 4.83 1.031L16.113 20H7.886z"/>
</Svg>);
});
Icon.displayName = 'Drinks2Line';
/**
* Remix Icon: Drinks 2 Line
* @see {@link https://remixicon.com/icon/drinks-2-line Remix Icon Docs}
*/
export const Drinks2Line = Icon;