@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.86 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 StyledBellSlashSolid = ({
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: "M6.97499 6.51874C7.83749 5.20174 9.20249 4.24399 10.8 3.91999V3.19999C10.8 2.53737 11.3362 2 12 2C12.6637 2 13.2 2.53737 13.2 3.19999V3.91999C15.9375 4.47612 18 6.89749 18 9.79999V10.505C18 12.2712 18.6487 13.97 19.8187 15.29L20.0962 15.6012C20.4112 15.9575 20.49 16.46 20.295 16.8912C20.2537 16.9062 20.28 16.8912 20.2725 16.94L23.655 19.5912C24.045 19.8987 24.1162 20.465 23.8087 20.855C23.5012 21.245 22.935 21.3162 22.545 21.0087L0.344843 3.60837C-0.0463567 3.30162 -0.114944 2.73612 0.191693 2.34484C0.498368 1.95364 1.06387 1.88506 1.45537 2.19169L6.97499 6.51874ZM5.99999 10.505V10.3287L15.2325 17.6H4.79999C4.32749 17.6 3.86624 17.3225 3.70537 16.8912C3.51187 16.46 3.58912 15.9575 3.90374 15.6012L4.18124 15.29C5.35124 13.97 5.99999 12.2712 5.99999 10.505ZM12 21.2C11.3625 21.2 10.7512 20.9487 10.3012 20.4987C9.85124 20.0487 9.59999 19.4037 9.59999 18.8H14.4C14.4 19.4037 14.1487 20.0487 13.6987 20.4987C13.2487 20.9487 12.6037 21.2 12 21.2Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBellSlashSolid);
const BellSlashSolid = /*#__PURE__*/memo(ForwardRef);
export default BellSlashSolid;