@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 655 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="M17 4H3V6H17V4ZM13 11H3V13H13V11ZM17 18H3V20H17V18ZM22.0104 8.81412L20.5962 7.3999L16 11.9961L20.5962 16.5923L22.0104 15.1781L18.8284 11.9961L22.0104 8.81412Z"/>
</Svg>);
};
Icon.displayName = 'MenuUnfold4Line';
/**
* Remix Icon: Menu Unfold 4 Line
* @see {@link https://remixicon.com/icon/menu-unfold-4-line Remix Icon Docs}
*/
export const MenuUnfold4Line = memo(Icon);