UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 559 B
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="M11 19v-5.111L3 5V3h18v2l-8 8.889V19h5v2H6v-2zM7.49 7h9.02l1.8-2H5.69zm1.8 2L12 12.01 14.71 9z"/> </Svg>); }); Icon.displayName = 'GobletLine'; /** * Remix Icon: Goblet Line * @see {@link https://remixicon.com/icon/goblet-line Remix Icon Docs} */ export const GobletLine = Icon;