UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 529 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const MenuFoldFill = /* @__PURE__ */ memo(function MenuFoldFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M21 18v2H3v-2zM7 3.5v10l-5-5zM21 11v2h-9v-2zm0-7v2h-9V4z"/> </Svg>); }); /** * Remix Icon: Menu Fold Fill * @see {@link https://remixicon.com/icon/menu-fold-fill Remix Icon Docs} */ export { MenuFoldFill };