@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.95 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 StyledBabyCarriageSolid = ({
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.9578 9.0001H0.00655312C0.128484 5.52666 1.93781 2.48213 4.63969 0.661033C5.25938 0.242673 6.08437 0.45872 6.51094 1.07447L11.9578 9.0001ZM18 7.5001C18 5.84541 19.3453 4.5001 21 4.5001H22.5C23.3297 4.5001 24 5.17041 24 6.0001C24 6.82978 23.3297 7.5001 22.5 7.5001H21V10.5001C21 11.6813 20.7281 12.8532 20.1984 13.9454C19.6734 15.0376 18.9 16.0267 17.925 16.8657C16.95 17.7001 15.7922 18.361 14.5172 18.8157C13.2422 19.2657 11.8781 19.5001 10.4578 19.5001C9.12188 19.5001 7.75781 19.2657 6.48281 18.8157C5.20781 18.361 4.05047 17.7001 3.07547 16.8657C2.10047 16.0267 1.32703 15.0376 0.799219 13.9454C0.271594 12.8532 0 11.6813 0 10.5001H18V7.5001ZM1.45781 21.7501C1.45781 20.5079 2.50734 19.5001 3.70781 19.5001C4.99219 19.5001 5.95781 20.5079 5.95781 21.7501C5.95781 22.9923 4.99219 24.0001 3.70781 24.0001C2.50734 24.0001 1.45781 22.9923 1.45781 21.7501ZM19.5 21.7501C19.5 22.9923 18.4922 24.0001 17.25 24.0001C16.0078 24.0001 15 22.9923 15 21.7501C15 20.5079 16.0078 19.5001 17.25 19.5001C18.4922 19.5001 19.5 20.5079 19.5 21.7501Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBabyCarriageSolid);
const BabyCarriageSolid = /*#__PURE__*/memo(ForwardRef);
export default BabyCarriageSolid;