UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 555 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const GobletLine = /* @__PURE__ */ memo(function GobletLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M11 19v-5.111L3 5V3h18v2l-8 8.889V19h5v2H6v-2zM7.49 7h9.02l1.8-2H5.69zm1.8 2L12 12.01 14.71 9z"/> </Svg>); }); /** * Remix Icon: Goblet Line * @see {@link https://remixicon.com/icon/goblet-line Remix Icon Docs} */ export { GobletLine };