react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 392 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"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11.001 5h-6v6h6zm2 0v6h6V5zm6 8h-6v6h6zm-8 6v-6h-6v6zm-8-16h18v18h-18z" />
</Svg>
);
export default SvgMicrosoftLine;