react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 484 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCoinFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M23 12v2c0 3.314-4.925 6-11 6-5.967 0-10.824-2.591-10.995-5.823L1 14v-2c0 3.314 4.925 6 11 6s11-2.686 11-6zM12 4c6.075 0 11 2.686 11 6s-4.925 6-11 6-11-2.686-11-6 4.925-6 11-6z" />
</Svg>
);
}
export default SvgCoinFill;