react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 326 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgBing(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M10.1 8.6l1.7 4.3 2.8 1.3L9 17.5V3.4L5 2v17.8L9 22l10-5.8v-4.5l-8.9-3.1z" fill="currentColor"/>
</Svg>);
}
export default SvgBing;