react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 428 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgHeart3Fill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M16.5 3C19.538 3 22 5.5 22 9c0 7-7.5 11-10 12.5C9.5 20 2 16 2 9c0-3.5 2.5-6 5.5-6C9.36 3 11 4 12 5c1-1 2.64-2 4.5-2z" />
</Svg>
);
}
export default SvgHeart3Fill;