@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 547 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const MicrosoftLine = /* @__PURE__ */ memo(function MicrosoftLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11.001 5h-6v6h6zm2 0v6h6V5zm6 8h-6v6h6zm-8 6v-6h-6v6zm-8-16h18v18h-18z"/>
</Svg>);
});
/**
* Remix Icon: Microsoft Line
* @see {@link https://remixicon.com/icon/microsoft-line Remix Icon Docs}
*/
export { MicrosoftLine };