dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 409 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgHeartFill = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M12.001 4.529a6 6 0 0 1 8.242.228 6 6 0 0 1 .236 8.236l-8.48 8.492-8.478-8.492a6 6 0 0 1 8.48-8.464" }) }));
const Memo = memo(SvgHeartFill);
export default Memo;