@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.75 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 StyledHeartRegular = ({
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: "M11.4375 3.93744L11.9578 4.49994L12.5203 3.93838C14.0906 2.40791 16.2656 1.71135 18.4031 2.06713C21.6328 2.60526 24 5.39995 24 8.67651V8.94838C24 10.8937 23.1938 12.7546 21.7687 14.0812L13.2984 21.989C12.9469 22.3171 12.4828 22.4999 12 22.4999C11.5172 22.4999 11.0531 22.3171 10.7016 21.989L2.23078 14.0812C0.807656 12.7546 0 10.8937 0 8.94838V8.67651C0 5.39995 2.36813 2.60526 5.59688 2.06713C7.69219 1.71135 9.90938 2.40791 11.4375 3.93744C11.3953 3.93744 11.4375 3.93791 11.4375 3.93744ZM11.9578 7.68276L9.84844 5.48901C8.83125 4.51307 7.3875 4.04994 5.96719 4.2862C3.82266 4.64385 2.25 6.50151 2.25 8.67651V8.94838C2.25 10.2703 2.79891 11.5359 3.76594 12.4359L12 20.1234L20.2359 12.4359C21.2016 11.5359 21.75 10.2703 21.75 8.94838V8.67651C21.75 6.50151 20.175 4.64385 18.0328 4.2862C16.6125 4.04994 15.1687 4.51307 14.1516 5.48901L11.9578 7.68276Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledHeartRegular);
const HeartRegular = /*#__PURE__*/memo(ForwardRef);
export default HeartRegular;