react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 457 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgUsdCircle(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11 9h4a1 1 0 000-2h-2V6a1 1 0 00-2 0v1a3 3 0 000 6h2a1 1 0 010 2H9a1 1 0 000 2h2v1a1 1 0 002 0v-1a3 3 0 000-6h-2a1 1 0 010-2zm1-8a11 11 0 1011 11A11 11 0 0012 1zm0 20a9 9 0 119-9 9 9 0 01-9 9z" fill="currentColor"/>
</Svg>);
}
export default SvgUsdCircle;