UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.37 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 StyledBellConciergeSolid = ({ 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: "M13.125 6.81094V5.25H13.875C14.4984 5.25 15 4.74844 15 4.125C15 3.50156 14.4984 3 13.875 3H10.0828C9.50156 3 9 3.50391 9 4.08281C9 4.66172 9.50156 5.25 10.0828 5.25H10.875V6.81188C5.60625 7.37344 1.5 11.8313 1.5 17.25H22.5C22.5 11.8313 18.3937 7.37344 13.125 6.81094ZM22.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.75Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBellConciergeSolid); const BellConciergeSolid = /*#__PURE__*/memo(ForwardRef); export default BellConciergeSolid;