@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 794 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="M7.32297 2H4V0H8.67703L10.677 5H21V7H18.8824L18.0554 21.0587C18.0243 21.5873 17.5866 22 17.0571 22H6.9429C6.41343 22 5.97572 21.5873 5.94463 21.0587L5.11765 7H3V5H8.52297L7.32297 2ZM7.1211 7L7.29906 10.0252C9.97062 10.1354 11.2679 10.6301 12.36 11.067C13.4113 11.4875 14.28 11.8532 16.5867 11.9676L16.8789 7H7.1211Z"/>
</Svg>);
};
Icon.displayName = 'Drinks2Fill';
/**
* Remix Icon: Drinks 2 Fill
* @see {@link https://remixicon.com/icon/drinks-2-fill Remix Icon Docs}
*/
export const Drinks2Fill = memo(Icon);