@loomhq/lens 10.56.1 → 10.56.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
function SvgBell(props) {
|
|
3
|
-
return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
|
|
4
|
-
React.createElement("path", {
|
|
3
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }, props),
|
|
4
|
+
React.createElement("path", { d: "M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9" }),
|
|
5
|
+
React.createElement("path", { d: "M13.73 21a2 2 0 0 1-3.46 0" }),
|
|
6
|
+
React.createElement("path", { d: "M2 8c0-2.2.7-4.3 2-6" }),
|
|
7
|
+
React.createElement("path", { d: "M22 8a10 10 0 0 0-2-6" })));
|
|
5
8
|
}
|
|
6
9
|
export default SvgBell;
|