UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 566 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const MenuAddFill = /* @__PURE__ */ memo(function MenuAddFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m18 15-.001 3H21v2h-3.001L18 23h-2l-.001-3H13v-2h2.999L16 15zm-7 3v2H3v-2zm10-7v2H3v-2zm0-7v2H3V4z"/> </Svg>); }); /** * Remix Icon: Menu Add Fill * @see {@link https://remixicon.com/icon/menu-add-fill Remix Icon Docs} */ export { MenuAddFill };