@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.33 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledHeartSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M0 8.94838V8.67651C0 5.39994 2.36813 2.60525 5.59688 2.06713C7.69219 1.71135 9.90938 2.40791 11.4375 3.93838L12 4.49994L12.5203 3.93838C14.0906 2.40791 16.2656 1.71135 18.4031 2.06713C21.6328 2.60525 24 5.39994 24 8.67651V8.94838C24 10.8937 23.1938 12.7546 21.7687 14.0812L13.2984 21.989C12.9469 22.3171 12.4828 22.5 12 22.5C11.5172 22.5 11.0531 22.3171 10.7016 21.989L2.23078 14.0812C0.807656 12.7546 1.40625e-05 10.8937 1.40625e-05 8.94838H0Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledHeartSolid);
const HeartSolid = /*#__PURE__*/memo(ForwardRef);
export default HeartSolid;