@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 680 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconHeartFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M7.5 3A5.5 5.5 0 0 0 2 8.5c0 6.136 6.692 10.598 9.128 12.019a1.72 1.72 0 0 0 1.745 0C15.308 19.098 22 14.636 22 8.5a5.5 5.5 0 0 0-10-3.163A5.5 5.5 0 0 0 7.5 3" }) }));
};
IconHeartFilled.iconName = "heart--filled";
export default IconHeartFilled;