1 | const React = require("react");
|
2 | function BellSlashIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | viewBox: "0 0 24 24",
|
10 | fill: "currentColor",
|
11 | "aria-hidden": "true",
|
12 | ref: svgRef,
|
13 | "aria-labelledby": titleId
|
14 | }, props), title ? React.createElement("title", {
|
15 | id: titleId
|
16 | }, title) : null, React.createElement("path", {
|
17 | d: "M3.53 2.47a.75.75 0 00-1.06 1.06l18 18a.75.75 0 101.06-1.06l-18-18zM20.57 16.476c-.223.082-.448.161-.674.238L7.319 4.137A6.75 6.75 0 0118.75 9v.75c0 2.123.8 4.057 2.118 5.52a.75.75 0 01-.297 1.206z"
|
18 | }), React.createElement("path", {
|
19 | fillRule: "evenodd",
|
20 | d: "M5.25 9c0-.184.007-.366.022-.546l10.384 10.384a3.751 3.751 0 01-7.396-1.119 24.585 24.585 0 01-4.831-1.244.75.75 0 01-.298-1.205A8.217 8.217 0 005.25 9.75V9zm4.502 8.9a2.25 2.25 0 104.496 0 25.057 25.057 0 01-4.496 0z",
|
21 | clipRule: "evenodd"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(BellSlashIcon);
|
25 | module.exports = ForwardRef; |
\ | No newline at end of file |