UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.24 kB
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 StyledBabyRegular = ({ 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: "M18.3677 10.1344L20.3739 8.72812C21.0536 8.25469 21.2176 7.31719 20.7395 6.6375C20.266 5.95781 19.3285 5.79375 18.6489 6.27183L16.6426 7.67808C13.8817 9.61406 10.1317 9.61406 7.37077 7.67813L5.36452 6.27188C4.68484 5.79375 3.74734 5.9625 3.2739 6.63755C2.79577 7.31719 2.95984 8.25 3.63952 8.72812L5.64577 10.1344C6.4614 10.7063 7.34265 11.1375 8.25202 11.4703V15.5138L5.96452 18.5625C5.53787 19.0969 5.52854 19.8516 5.93632 20.4L8.18632 23.4C8.48171 23.7938 8.93171 24 9.3864 24C9.70051 24 10.0145 23.9016 10.2864 23.7C10.952 23.2031 11.0833 22.2609 10.5864 21.6L9.03484 19.5281L9.89265 18.4547C10.4223 18.8766 11.0739 19.1203 11.7583 19.1203H12.2317C12.9161 19.1203 13.5676 18.8765 14.0973 18.4547L14.9551 19.5281L13.4036 21.6C12.9067 22.2609 13.038 23.2031 13.7036 23.7C14.0176 23.9016 14.3317 24 14.6458 24C15.1051 24 15.5505 23.7938 15.8458 23.4L18.0958 20.4C18.5082 19.8516 18.4942 19.0969 18.0676 18.5625L15.8129 15.5039V11.4703C16.6755 11.1375 17.552 10.7063 18.3677 10.1344ZM14.2614 15.6094L12.8992 16.9725C12.7192 17.1516 12.4848 17.25 12.2364 17.25H11.7864C11.5352 17.25 11.3008 17.1526 11.125 16.9746L9.76187 15.6115V14.625H14.2619V15.6094H14.2614ZM12.0067 7.45781C14.0786 7.45781 15.7562 5.77969 15.7562 3.75C15.7145 1.67812 14.0786 0 12.0067 0C9.93484 0 8.25671 1.67812 8.25671 3.70781C8.25671 5.82187 9.93484 7.45781 12.0067 7.45781Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBabyRegular); const BabyRegular = /*#__PURE__*/memo(ForwardRef); export default BabyRegular;