UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 580 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="M21 18v2H3v-2zM6.596 3.903 8.01 5.318 4.828 8.5l3.182 3.182-1.414 1.414L2 8.5zM21 11v2h-9v-2zm0-7v2h-9V4z"/> </Svg>); }); Icon.displayName = 'MenuFoldLine'; /** * Remix Icon: Menu Fold Line * @see {@link https://remixicon.com/icon/menu-fold-line Remix Icon Docs} */ export const MenuFoldLine = Icon;