@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.48 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 StyledBellConciergeRegular = ({
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: "M22.875 18.75H1.125C0.503906 18.75 0 19.2516 0 19.8328C0 20.4984 0.503906 21 1.08281 21H22.8328C23.4539 21 23.9578 20.4961 23.9578 19.9172C24 19.2516 23.4984 18.75 22.875 18.75ZM3.75 16.5C3.75 11.9531 7.45312 8.25 12 8.25C16.5469 8.25 20.25 11.9531 20.25 16.5V17.25H22.5V16.5C22.5 11.2078 18.5859 6.84844 13.5 6.11719V5.25H14.625C15.2461 5.25 15.75 4.74609 15.75 4.125C15.75 3.50344 15.2484 3 14.5828 3H9.33281C8.75156 3 8.25 3.50344 8.25 4.125C8.25 4.74609 8.75391 5.25 9.375 5.25H10.5V6.11719C5.41406 6.84844 1.5 11.2078 1.5 16.5V17.25H3.75V16.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBellConciergeRegular);
const BellConciergeRegular = /*#__PURE__*/memo(ForwardRef);
export default BellConciergeRegular;