react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 366 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgItalic(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17 6h-6a1 1 0 000 2h1.52l-3.2 8H7a1 1 0 000 2h6a1 1 0 000-2h-1.52l3.2-8H17a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgItalic;