@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.04 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 StyledBabySolid = ({
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: "M8.84987 19.3031L10.3133 17.8397L7.49894 15.3511L5.04784 17.8017C4.38878 18.4594 4.31565 19.5047 4.87487 20.25L7.12487 23.25C7.49519 23.7422 8.05769 24 8.62487 24C9.01605 24 9.41144 23.8777 9.74847 23.625C10.5777 23.0039 10.7446 21.8283 10.1235 21L8.84987 19.3031ZM11.9999 7.45781C14.0741 7.45781 15.7494 5.78203 15.7494 3.75C15.7494 1.71797 14.0764 0 11.9999 0C9.92331 0 8.24987 1.67578 8.24987 3.70781C8.24987 5.73984 9.928 7.45781 11.9999 7.45781ZM20.6577 6.79688C20.06 5.9475 18.8938 5.74781 18.0439 6.33984L16.1394 7.67578C13.6724 9.41016 10.3222 9.41016 7.8519 7.67578L5.94737 6.33984C5.10175 5.74687 3.93596 5.95312 3.33831 6.79688C2.74628 7.64531 2.95159 8.8125 3.79534 9.4125L5.69987 10.7484C6.26706 11.1422 6.87643 11.4516 7.49987 11.7281V13.5H16.4999L16.4999 11.7323C17.121 11.4573 17.729 11.1473 18.2971 10.7461L20.2016 9.41016C21.0514 8.8125 21.253 7.64531 20.6577 6.79688ZM16.4999 15.3469L13.6855 17.8355L15.1489 19.2989L13.8749 21C13.2538 21.8283 13.4207 23.0039 14.2499 23.625C14.5874 23.8781 14.9811 24 15.3327 24C15.9027 24 16.4666 23.7414 16.8341 23.25L19.0841 20.25C19.6438 19.5037 19.5707 18.4594 18.9098 17.7994L16.4999 15.3469Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBabySolid);
const BabySolid = /*#__PURE__*/memo(ForwardRef);
export default BabySolid;