@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 700 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="M20.9997 4H6.99967V6H20.9997V4ZM20.9997 11H10.9997V13H20.9997V11ZM20.9997 18H6.99967V20H20.9997V18ZM1.98926 8.81412L3.40347 7.3999L7.99967 11.9961L3.40347 16.5923L1.98926 15.1781L5.17124 11.9961L1.98926 8.81412Z"/>
</Svg>);
};
Icon.displayName = 'MenuFold4Line';
/**
* Remix Icon: Menu Fold 4 Line
* @see {@link https://remixicon.com/icon/menu-fold-4-line Remix Icon Docs}
*/
export const MenuFold4Line = memo(Icon);