UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.53 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 StyledBellSolid = ({ 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 1.5V2.4C16.4219 3.09516 19 6.12187 19 9.75V10.6313C19 12.8391 19.8109 14.9625 21.2734 16.6125L21.6203 17.0016C22.0141 17.4469 22.1125 18.075 21.8688 18.6141C21.625 19.1531 21.0906 19.5 20.5 19.5H2.49999C1.90936 19.5 1.37363 19.1531 1.13166 18.6141C0.889692 18.075 0.986475 17.4469 1.37893 17.0016L1.72655 16.6125C3.19093 14.9625 3.99999 12.8391 3.99999 10.6313V9.75C3.99999 6.12187 6.53593 3.09516 10 2.4V1.5C10 0.671719 10.6703 0 11.5 0C12.3297 0 13 0.671719 13 1.5ZM11.5 24C10.7031 24 9.93906 23.6859 9.37656 23.1234C8.81406 22.5609 8.5 21.7547 8.5 21H14.5C14.5 21.7547 14.1859 22.5609 13.6234 23.1234C13.0609 23.6859 12.2547 24 11.5 24Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBellSolid); const BellSolid = /*#__PURE__*/memo(ForwardRef); export default BellSolid;