@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 334 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMicrosoftLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M11.001 5h-6v6h6V5Zm2 0v6h6V5h-6Zm6 8h-6v6h6v-6Zm-8 6v-6h-6v6h6Zm-8-16h18v18h-18V3Z" />
</Svg>
);
export default SvgMicrosoftLine;