@grafana/components 0.0.47 → 0.0.48

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.
@@ -6583,6 +6583,13 @@ const Grid2X2 = ({ title = "Grid 2 x 2", ...props }) => /* @__PURE__ */ jsxRunti
6583
6583
  ] });
6584
6584
  Grid2X2.fill = "none";
6585
6585
 
6586
+ const Grid3X2 = ({ title = "Grid 3 x 2", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
6587
+ title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
6588
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 3v18M3 12h18M9 3v18" }),
6589
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" })
6590
+ ] });
6591
+ Grid3X2.fill = "none";
6592
+
6586
6593
  const Grid3X3 = ({ title = "Grid 3 x 3", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
6587
6594
  title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
6588
6595
  /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
@@ -6590,13 +6597,6 @@ const Grid3X3 = ({ title = "Grid 3 x 3", ...props }) => /* @__PURE__ */ jsxRunti
6590
6597
  ] });
6591
6598
  Grid3X3.fill = "none";
6592
6599
 
6593
- const Grid3x2 = ({ title = "Grid 3x2", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
6594
- title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
6595
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 3v18M3 12h18M9 3v18" }),
6596
- /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" })
6597
- ] });
6598
- Grid3x2.fill = "none";
6599
-
6600
6600
  const Grid = ({ title = "Grid", ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { viewBox: "0 0 24 24", ...props, children: [
6601
6601
  title && /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
6602
6602
  /* @__PURE__ */ jsxRuntime.jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
@@ -14832,8 +14832,8 @@ const AllIcons = {
14832
14832
  Grid2X2Plus,
14833
14833
  Grid2X2X,
14834
14834
  Grid2X2,
14835
+ Grid3X2,
14835
14836
  Grid3X3,
14836
- Grid3x2,
14837
14837
  Grid,
14838
14838
  GripHorizontal,
14839
14839
  GripVertical,
@@ -20124,8 +20124,7 @@ const iconMetaData = {
20124
20124
  Grid2X2Plus: [],
20125
20125
  Grid2X2X: [],
20126
20126
  Grid2X2: [],
20127
- Grid3X3: ["table", "rows", "columns"],
20128
- Grid3x2: [
20127
+ Grid3X2: [
20129
20128
  "table",
20130
20129
  "rows",
20131
20130
  "columns",
@@ -20143,6 +20142,7 @@ const iconMetaData = {
20143
20142
  "acre",
20144
20143
  "window"
20145
20144
  ],
20145
+ Grid3X3: [],
20146
20146
  Grid: [],
20147
20147
  GripHorizontal: ["grab", "dots", "handle", "move", "drag"],
20148
20148
  GripVertical: ["grab", "dots", "handle", "move", "drag"],
@@ -27273,8 +27273,8 @@ exports.Grid2X2 = Grid2X2;
27273
27273
  exports.Grid2X2Check = Grid2X2Check;
27274
27274
  exports.Grid2X2Plus = Grid2X2Plus;
27275
27275
  exports.Grid2X2X = Grid2X2X;
27276
+ exports.Grid3X2 = Grid3X2;
27276
27277
  exports.Grid3X3 = Grid3X3;
27277
- exports.Grid3x2 = Grid3x2;
27278
27278
  exports.Grip = Grip;
27279
27279
  exports.GripHorizontal = GripHorizontal;
27280
27280
  exports.GripVertical = GripVertical;