@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 773 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="M9 4.9967V11.2694H7V4.9967H5V13.9967H19V4.9967H9ZM20 15.9967H4V17.9967H20V15.9967ZM3 13.9967V3.9967C3 3.44442 3.44772 2.9967 4 2.9967H20C20.5523 2.9967 21 3.44442 21 3.9967V13.9967H22V18.9967C22 19.549 21.5523 19.9967 21 19.9967H13V22.9967H11V19.9967H3C2.44772 19.9967 2 19.549 2 18.9967V13.9967H3Z"/>
</Svg>);
};
Icon.displayName = 'Brush4Line';
/**
* Remix Icon: Brush 4 Line
* @see {@link https://remixicon.com/icon/brush-4-line Remix Icon Docs}
*/
export const Brush4Line = memo(Icon);