UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.18 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 StyledBellPlusRegular = ({ 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: "M12.5 7.125C13.1234 7.125 13.625 7.62656 13.625 8.25V10.125H15.5C16.1234 10.125 16.625 10.6266 16.625 11.25C16.625 11.8734 16.1234 12.375 15.5 12.375H13.625V14.25C13.625 14.8734 13.1234 15.375 12.5 15.375C11.8766 15.375 11.375 14.8734 11.375 14.25V12.375H9.50001C8.87657 12.375 8.37501 11.8734 8.37501 11.25C8.37501 10.6266 8.87657 10.125 9.50001 10.125H11.375V8.25C11.375 7.62656 11.8766 7.125 12.5 7.125ZM14 1.5V2.33812C17.3984 2.87766 20 5.82187 20 9.375V10.9406C20 13.0687 20.7266 15.1359 22.0531 16.8L22.7516 17.6719C23.0234 18.0094 23.075 18.4734 22.8875 18.8625C22.7 19.2516 22.3063 19.5 21.875 19.5H3.12501C2.69235 19.5 2.29837 19.2516 2.11106 18.8625C1.9237 18.4734 1.97638 18.0094 2.24657 17.6719L2.94548 16.8C4.27532 15.1359 5.00001 13.0687 5.00001 10.9406V9.375C5.00001 5.82187 7.60157 2.87766 11 2.33812V1.5C11 0.671719 11.6703 0 12.5 0C13.3297 0 14 0.671719 14 1.5ZM12.125 4.5C9.43438 4.5 7.25001 6.68437 7.25001 9.375V10.9406C7.25001 13.1859 6.59938 15.375 5.38954 17.25H19.6109C18.4016 15.375 17.75 13.1859 17.75 10.9406V9.375C17.75 6.68437 15.5656 4.5 12.875 4.5H12.125ZM15.5 21C15.5 21.7547 15.1859 22.5609 14.6234 23.1234C14.0609 23.6859 13.2547 24 12.5 24C11.7031 24 10.9391 23.6859 10.3766 23.1234C9.81407 22.5609 9.50001 21.7547 9.50001 21H15.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBellPlusRegular); const BellPlusRegular = /*#__PURE__*/memo(ForwardRef); export default BellPlusRegular;