UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 501 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="M18 18v2H6v-2zm3-7v2H3v-2zm-3-7v2H6V4z"/> </Svg>); }); Icon.displayName = 'Menu5Line'; /** * Remix Icon: Menu 5 Line * @see {@link https://remixicon.com/icon/menu-5-line Remix Icon Docs} */ export const Menu5Line = Icon;