@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.46 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 StyledBellOnRegular = ({
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.2 3.2V3.8705C15.9188 4.30213 18 6.6575 18 9.5V10.7525C18 12.455 18.5813 14.1088 19.6425 15.44L20.2013 16.1375C20.4188 16.4075 20.46 16.7788 20.31 17.09C20.16 17.4013 19.845 17.6 19.5 17.6H4.5C4.155 17.6 3.84 17.4013 3.68888 17.09C3.53888 16.7788 3.58125 16.4075 3.79875 16.1375L4.3575 15.44C5.41875 14.1088 6 12.455 6 10.7525V9.5C6 6.6575 8.08125 4.30213 10.8 3.8705V3.2C10.8 2.53738 11.3363 2 12 2C12.6638 2 13.2 2.53738 13.2 3.2ZM11.7 5.6C9.5475 5.6 7.8 7.3475 7.8 9.5V10.7525C7.8 12.5487 7.27875 14.3 6.31125 15.8H17.6888C16.7213 14.3 16.2 12.5487 16.2 10.7525V9.5C16.2 7.3475 14.4525 5.6 12.3 5.6H11.7ZM14.4 18.8C14.4 19.4038 14.1488 20.0487 13.6988 20.4988C13.2487 20.9487 12.6038 21.2 12 21.2C11.3625 21.2 10.7513 20.9487 10.3013 20.4988C9.85125 20.0487 9.6 19.4038 9.6 18.8H14.4ZM0 9.5C0 9.00125 0.403125 8.6 0.9 8.6H3.9C4.39875 8.6 4.8 9.00125 4.8 9.5C4.8 9.99875 4.39875 10.4 3.9 10.4H0.9C0.403125 10.4 0 9.99875 0 9.5ZM23.1 8.6C23.5988 8.6 24 9.00125 24 9.5C24 9.99875 23.5988 10.4 23.1 10.4H20.1C19.6013 10.4 19.2 9.99875 19.2 9.5C19.2 9.00125 19.6013 8.6 20.1 8.6H23.1ZM22.4062 2.79763C22.6275 3.242 22.4475 3.78275 22.0013 4.00513L19.6013 5.20513C19.1588 5.42713 18.6188 5.24713 18.3938 4.80238C18.1725 4.358 18.3525 3.81725 18.7987 3.59487L21.1987 2.39488C21.6413 2.17273 22.1813 2.35295 22.4062 2.79763ZM1.99763 4.00513C1.55288 3.78275 1.37287 3.242 1.59487 2.79763C1.81725 2.35295 2.358 2.17273 2.80238 2.39488L5.20125 3.59487C5.6475 3.81725 5.8275 4.358 5.60625 4.80238C5.38125 5.24713 4.84125 5.42713 4.39875 5.20513L1.99763 4.00513Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBellOnRegular);
const BellOnRegular = /*#__PURE__*/memo(ForwardRef);
export default BellOnRegular;