@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 639 B
JavaScript
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="M14 10h-4v4h4zm2 0v4h3v-4zm-2 9v-3h-4v3zm2 0h3v-3h-3zM14 5h-4v3h4zm2 0v3h3V5zm-8 5H5v4h3zm0 9v-3H5v3zM8 5H5v3h3zM4 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1"/>
</Svg>);
});
Icon.displayName = 'GridLine';
/**
* Remix Icon: Grid Line
* @see {@link https://remixicon.com/icon/grid-line Remix Icon Docs}
*/
export const GridLine = Icon;