react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 525 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMoneyPoundCircleFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12.005 22.003c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10m-3-9v2h-1v2h8v-2h-5v-2h3v-2h-3v-1a1.5 1.5 0 0 1 2.76-.815l1.986-.497a3.501 3.501 0 0 0-6.746 1.312v1h-1v2z" />
</Svg>
);
export default SvgMoneyPoundCircleFill;