UNPKG

1.21 kBJavaScriptView Raw
1import * as React from "react";
2function BellAlertIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/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 ? /*#__PURE__*/React.createElement("title", {
15 id: titleId
16 }, title) : null, /*#__PURE__*/React.createElement("path", {
17 d: "M5.85 3.5a.75.75 0 00-1.117-1 9.719 9.719 0 00-2.348 4.876.75.75 0 001.479.248A8.219 8.219 0 015.85 3.5zM19.267 2.5a.75.75 0 10-1.118 1 8.22 8.22 0 011.987 4.124.75.75 0 001.48-.248A9.72 9.72 0 0019.266 2.5z"
18 }), /*#__PURE__*/React.createElement("path", {
19 fillRule: "evenodd",
20 d: "M12 2.25A6.75 6.75 0 005.25 9v.75a8.217 8.217 0 01-2.119 5.52.75.75 0 00.298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 107.48 0 24.583 24.583 0 004.83-1.244.75.75 0 00.298-1.205 8.217 8.217 0 01-2.118-5.52V9A6.75 6.75 0 0012 2.25zM9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 004.496 0l.002.1a2.25 2.25 0 11-4.5 0z",
21 clipRule: "evenodd"
22 }));
23}
24const ForwardRef = React.forwardRef(BellAlertIcon);
25export default ForwardRef;
\No newline at end of file