@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 612 B
JavaScript
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 17.9996V19.9996H3V17.9996H21ZM7 3.5V13.5L2 8.49955L7 3.5ZM21 10.9996V12.9996H12V10.9996H21ZM21 3.99955V5.99955H12V3.99955H21Z"/>
</Svg>);
};
Icon.displayName = 'MenuFoldFill';
/**
* Remix Icon: Menu Fold Fill
* @see {@link https://remixicon.com/icon/menu-fold-fill Remix Icon Docs}
*/
export const MenuFoldFill = memo(Icon);