react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 385 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgProgrammingLanguage(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M22 3l-3 15.1-9.1 3-7.9-3 .8-4.1h3.4l-.4 1.7 4.8 1.8 5.5-1.8.8-3.8H3.2l.7-3.4h13.6l.5-2.1H4.3L5 3h17z" fill="currentColor"/>
</Svg>);
}
export default SvgProgrammingLanguage;