import * as React from "react" import Svg, { SvgProps, Path } from "react-native-svg" interface Props { width?: number, height?: number, color: string, colorCircle: string } const Usd = ({ color, colorCircle, height = 24, width = 24 }: Props) => ( ) export default Usd