@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 638 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="M11.001 5H5.00098V11H11.001V5ZM13.001 5V11H19.001V5H13.001ZM19.001 13H13.001V19H19.001V13ZM11.001 19V13H5.00098V19H11.001ZM3.00098 3H21.001V21H3.00098V3Z"/>
</Svg>);
};
Icon.displayName = 'MicrosoftLine';
/**
* Remix Icon: Microsoft Line
* @see {@link https://remixicon.com/icon/microsoft-line Remix Icon Docs}
*/
export const MicrosoftLine = memo(Icon);