react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 440 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgYen(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M18.55 2.17a1 1 0 00-1.38.28L12 10.2 6.83 2.45a1 1 0 00-1.66 1.1l5 7.45H7a1 1 0 000 2h4v2H7a1 1 0 000 2h4v4a1 1 0 002 0v-4h4a1 1 0 000-2h-4v-2h4a1 1 0 000-2h-3.13l5-7.45a1 1 0 00-.32-1.38z" fill="currentColor"/>
</Svg>);
}
export default SvgYen;