react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 348 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMicrosoft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M2 22h9.5v-9.5H2V22zm0-10.5h9.5V2H2v9.5zM12.5 2v9.5H22V2h-9.5zm0 20H22v-9.5h-9.5V22z" fill="currentColor"/>
</Svg>);
}
export default SvgMicrosoft;