UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 641 B
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="M21 2V22H19V14H16V7C16 4.23858 18.2386 2 21 2ZM9 13.9V22H7V13.9C4.71776 13.4367 3 11.419 3 9V3H5V10H7V3H9V10H11V3H13V9C13 11.419 11.2822 13.4367 9 13.9Z"/> </Svg>); }; Icon.displayName = 'RestaurantFill'; /** * Remix Icon: Restaurant Fill * @see {@link https://remixicon.com/icon/restaurant-fill Remix Icon Docs} */ export const RestaurantFill = memo(Icon);