35 lines
1018 B
TypeScript
35 lines
1018 B
TypeScript
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) => (
|
|
<Svg
|
|
width={width}
|
|
height={height}
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<Path
|
|
stroke={color}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.5}
|
|
d="M8.672 14.33c0 1.29.99 2.33 2.22 2.33h2.51c1.07 0 1.94-.91 1.94-2.03 0-1.22-.53-1.65-1.32-1.93l-4.03-1.4c-.79-.28-1.32-.71-1.32-1.93 0-1.12.87-2.03 1.94-2.03h2.51c1.23 0 2.22 1.04 2.22 2.33M12 6v12"
|
|
/>
|
|
<Path
|
|
stroke={colorCircle}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.5}
|
|
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default Usd
|