UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 519 B
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="M3 4H21V6H3V4ZM3 11H15V13H3V11ZM3 18H21V20H3V18Z"/> </Svg>); }; Icon.displayName = 'Menu2Line'; /** * Remix Icon: Menu 2 Line * @see {@link https://remixicon.com/icon/menu-2-line Remix Icon Docs} */ export const Menu2Line = memo(Icon);