@tidbcloud/uikit 2.0.0-beta.36 → 2.0.0-beta.37
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.
- package/CHANGELOG.md +6 -0
- package/dist/icons/index.cjs +6 -0
- package/dist/icons/index.d.cts +2 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +6 -0
- package/dist/icons/raw/Block.svg +6 -0
- package/dist/icons/raw/TableList.svg +3 -0
- package/dist/icons/react/Block.cjs +71 -0
- package/dist/icons/react/Block.d.cts +3 -0
- package/dist/icons/react/Block.d.ts +3 -0
- package/dist/icons/react/Block.js +72 -0
- package/dist/icons/react/TableList.cjs +39 -0
- package/dist/icons/react/TableList.d.cts +3 -0
- package/dist/icons/react/TableList.d.ts +3 -0
- package/dist/icons/react/TableList.js +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/icons/index.cjs
CHANGED
|
@@ -1237,6 +1237,8 @@ const ZapOff = require("./react/ZapOff.cjs");
|
|
|
1237
1237
|
const ZapSquare = require("./react/ZapSquare.cjs");
|
|
1238
1238
|
const ZoomIn = require("./react/ZoomIn.cjs");
|
|
1239
1239
|
const ZoomOut = require("./react/ZoomOut.cjs");
|
|
1240
|
+
const Block = require("./react/Block.cjs");
|
|
1241
|
+
const TableList = require("./react/TableList.cjs");
|
|
1240
1242
|
const IconActivity = Activity;
|
|
1241
1243
|
const IconActivityHeart = ActivityHeart;
|
|
1242
1244
|
const IconAiExplore01 = AiExplore01;
|
|
@@ -2474,6 +2476,8 @@ const IconZapOff = ZapOff;
|
|
|
2474
2476
|
const IconZapSquare = ZapSquare;
|
|
2475
2477
|
const IconZoomIn = ZoomIn;
|
|
2476
2478
|
const IconZoomOut = ZoomOut;
|
|
2479
|
+
const IconBlock = Block;
|
|
2480
|
+
const IconTableList = TableList;
|
|
2477
2481
|
exports.IconActivity = IconActivity;
|
|
2478
2482
|
exports.IconActivityHeart = IconActivityHeart;
|
|
2479
2483
|
exports.IconAiExplore01 = IconAiExplore01;
|
|
@@ -2637,6 +2641,7 @@ exports.IconBellRinging04 = IconBellRinging04;
|
|
|
2637
2641
|
exports.IconBezierCurve01 = IconBezierCurve01;
|
|
2638
2642
|
exports.IconBezierCurve02 = IconBezierCurve02;
|
|
2639
2643
|
exports.IconBezierCurve03 = IconBezierCurve03;
|
|
2644
|
+
exports.IconBlock = IconBlock;
|
|
2640
2645
|
exports.IconBluetoothConnect = IconBluetoothConnect;
|
|
2641
2646
|
exports.IconBluetoothOff = IconBluetoothOff;
|
|
2642
2647
|
exports.IconBluetoothOn = IconBluetoothOn;
|
|
@@ -3563,6 +3568,7 @@ exports.IconSystemDatabase = IconSystemDatabase;
|
|
|
3563
3568
|
exports.IconSystemEndpoint = IconSystemEndpoint;
|
|
3564
3569
|
exports.IconSystemMode = IconSystemMode;
|
|
3565
3570
|
exports.IconTable = IconTable;
|
|
3571
|
+
exports.IconTableList = IconTableList;
|
|
3566
3572
|
exports.IconTablet01 = IconTablet01;
|
|
3567
3573
|
exports.IconTablet02 = IconTablet02;
|
|
3568
3574
|
exports.IconTag01 = IconTag01;
|
package/dist/icons/index.d.cts
CHANGED
|
@@ -1241,3 +1241,5 @@ export declare const IconZapOff: React.FC<IconProps>;
|
|
|
1241
1241
|
export declare const IconZapSquare: React.FC<IconProps>;
|
|
1242
1242
|
export declare const IconZoomIn: React.FC<IconProps>;
|
|
1243
1243
|
export declare const IconZoomOut: React.FC<IconProps>;
|
|
1244
|
+
export declare const IconBlock: React.FC<IconProps>;
|
|
1245
|
+
export declare const IconTableList: React.FC<IconProps>;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -1241,3 +1241,5 @@ export declare const IconZapOff: React.FC<IconProps>;
|
|
|
1241
1241
|
export declare const IconZapSquare: React.FC<IconProps>;
|
|
1242
1242
|
export declare const IconZoomIn: React.FC<IconProps>;
|
|
1243
1243
|
export declare const IconZoomOut: React.FC<IconProps>;
|
|
1244
|
+
export declare const IconBlock: React.FC<IconProps>;
|
|
1245
|
+
export declare const IconTableList: React.FC<IconProps>;
|
package/dist/icons/index.js
CHANGED
|
@@ -1235,6 +1235,8 @@ import ZapOff from "./react/ZapOff.js";
|
|
|
1235
1235
|
import ZapSquare from "./react/ZapSquare.js";
|
|
1236
1236
|
import ZoomIn from "./react/ZoomIn.js";
|
|
1237
1237
|
import ZoomOut from "./react/ZoomOut.js";
|
|
1238
|
+
import Block from "./react/Block.js";
|
|
1239
|
+
import TableList from "./react/TableList.js";
|
|
1238
1240
|
const IconActivity = Activity;
|
|
1239
1241
|
const IconActivityHeart = ActivityHeart;
|
|
1240
1242
|
const IconAiExplore01 = AiExplore01;
|
|
@@ -2472,6 +2474,8 @@ const IconZapOff = ZapOff;
|
|
|
2472
2474
|
const IconZapSquare = ZapSquare;
|
|
2473
2475
|
const IconZoomIn = ZoomIn;
|
|
2474
2476
|
const IconZoomOut = ZoomOut;
|
|
2477
|
+
const IconBlock = Block;
|
|
2478
|
+
const IconTableList = TableList;
|
|
2475
2479
|
export {
|
|
2476
2480
|
IconActivity,
|
|
2477
2481
|
IconActivityHeart,
|
|
@@ -2636,6 +2640,7 @@ export {
|
|
|
2636
2640
|
IconBezierCurve01,
|
|
2637
2641
|
IconBezierCurve02,
|
|
2638
2642
|
IconBezierCurve03,
|
|
2643
|
+
IconBlock,
|
|
2639
2644
|
IconBluetoothConnect,
|
|
2640
2645
|
IconBluetoothOff,
|
|
2641
2646
|
IconBluetoothOn,
|
|
@@ -3562,6 +3567,7 @@ export {
|
|
|
3562
3567
|
IconSystemEndpoint,
|
|
3563
3568
|
IconSystemMode,
|
|
3564
3569
|
IconTable,
|
|
3570
|
+
IconTableList,
|
|
3565
3571
|
IconTablet01,
|
|
3566
3572
|
IconTablet02,
|
|
3567
3573
|
IconTag01,
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.5 6.47012C13.5 5.91006 13.5 5.63004 13.609 5.41613C13.7049 5.22796 13.8578 5.07498 14.046 4.97911C14.2599 4.87012 14.5399 4.87012 15.1 4.87012H19.9C20.4601 4.87012 20.7401 4.87012 20.954 4.97911C21.1422 5.07498 21.2951 5.22796 21.391 5.41613C21.5 5.63004 21.5 5.91006 21.5 6.47012V9.27012C21.5 9.83017 21.5 10.1102 21.391 10.3241C21.2951 10.5123 21.1422 10.6653 20.954 10.7611C20.7401 10.8701 20.4601 10.8701 19.9 10.8701H15.1C14.5399 10.8701 14.2599 10.8701 14.046 10.7611C13.8578 10.6653 13.7049 10.5123 13.609 10.3241C13.5 10.1102 13.5 9.83017 13.5 9.27012V6.47012Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M2.5 6.47012C2.5 5.91006 2.5 5.63004 2.60899 5.41613C2.70487 5.22796 2.85785 5.07498 3.04601 4.97911C3.25992 4.87012 3.53995 4.87012 4.1 4.87012H8.9C9.46005 4.87012 9.74008 4.87012 9.95399 4.97911C10.1422 5.07498 10.2951 5.22796 10.391 5.41613C10.5 5.63004 10.5 5.91006 10.5 6.47012V9.27012C10.5 9.83017 10.5 10.1102 10.391 10.3241C10.2951 10.5123 10.1422 10.6653 9.95399 10.7611C9.74008 10.8701 9.46005 10.8701 8.9 10.8701H4.1C3.53995 10.8701 3.25992 10.8701 3.04601 10.7611C2.85785 10.6653 2.70487 10.5123 2.60899 10.3241C2.5 10.1102 2.5 9.83017 2.5 9.27012V6.47012Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M2.5 15.6C2.5 15.04 2.5 14.76 2.60899 14.546C2.70487 14.3579 2.85785 14.2049 3.04601 14.109C3.25992 14 3.53995 14 4.1 14H8.9C9.46005 14 9.74008 14 9.95399 14.109C10.1422 14.2049 10.2951 14.3579 10.391 14.546C10.5 14.76 10.5 15.04 10.5 15.6V18.4C10.5 18.9601 10.5 19.2401 10.391 19.454C10.2951 19.6422 10.1422 19.7952 9.95399 19.891C9.74008 20 9.46005 20 8.9 20H4.1C3.53995 20 3.25992 20 3.04601 19.891C2.85785 19.7952 2.70487 19.6422 2.60899 19.454C2.5 19.2401 2.5 18.9601 2.5 18.4V15.6Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M13.4801 15.6144C13.4801 15.0543 13.4801 14.7743 13.5891 14.5604C13.685 14.3722 13.838 14.2192 14.0261 14.1234C14.2401 14.0144 14.5201 14.0144 15.0801 14.0144H19.8801C20.4402 14.0144 20.7202 14.0144 20.9341 14.1234C21.1223 14.2192 21.2753 14.3722 21.3711 14.5604C21.4801 14.7743 21.4801 15.0543 21.4801 15.6144V18.4144C21.4801 18.9744 21.4801 19.2545 21.3711 19.4684C21.2753 19.6565 21.1223 19.8095 20.9341 19.9054C20.7202 20.0144 20.4402 20.0144 19.8801 20.0144H15.0801C14.5201 20.0144 14.2401 20.0144 14.0261 19.9054C13.838 19.8095 13.685 19.6565 13.5891 19.4684C13.4801 19.2545 13.4801 18.9744 13.4801 18.4144V15.6144Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 9.5H21M3 14.5H21M7.8 4.5H16.2C17.8802 4.5 18.7202 4.5 19.362 4.82698C19.9265 5.1146 20.3854 5.57354 20.673 6.13803C21 6.77976 21 6.61984 21 8.3V15.7C21 17.3802 21 17.2202 20.673 17.862C20.3854 18.4265 19.9265 18.8854 19.362 19.173C18.7202 19.5 17.8802 19.5 16.2 19.5H7.8C6.11984 19.5 5.27976 19.5 4.63803 19.173C4.07354 18.8854 3.6146 18.4265 3.32698 17.862C3 17.2202 3 17.3802 3 15.7V8.3C3 6.61984 3 6.77976 3.32698 6.13803C3.6146 5.57354 4.07354 5.1146 4.63803 4.82698C5.27976 4.5 6.11984 4.5 7.8 4.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.cjs");
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const Block = (props, ref) => {
|
|
5
|
+
if (typeof props.size === "number") {
|
|
6
|
+
const { size, ...rest } = props;
|
|
7
|
+
props = {
|
|
8
|
+
...rest,
|
|
9
|
+
height: size,
|
|
10
|
+
width: size
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
return /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsxs(
|
|
14
|
+
"svg",
|
|
15
|
+
{
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
width: "1em",
|
|
18
|
+
height: "1em",
|
|
19
|
+
fill: "none",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
strokeWidth: "1.5",
|
|
22
|
+
ref,
|
|
23
|
+
...props,
|
|
24
|
+
children: [
|
|
25
|
+
/* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
stroke: "currentColor",
|
|
29
|
+
"stroke-width": "inherit",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round",
|
|
32
|
+
d: "M13.5 6.47012C13.5 5.91006 13.5 5.63004 13.609 5.41613C13.7049 5.22796 13.8578 5.07498 14.046 4.97911C14.2599 4.87012 14.5399 4.87012 15.1 4.87012H19.9C20.4601 4.87012 20.7401 4.87012 20.954 4.97911C21.1422 5.07498 21.2951 5.22796 21.391 5.41613C21.5 5.63004 21.5 5.91006 21.5 6.47012V9.27012C21.5 9.83017 21.5 10.1102 21.391 10.3241C21.2951 10.5123 21.1422 10.6653 20.954 10.7611C20.7401 10.8701 20.4601 10.8701 19.9 10.8701H15.1C14.5399 10.8701 14.2599 10.8701 14.046 10.7611C13.8578 10.6653 13.7049 10.5123 13.609 10.3241C13.5 10.1102 13.5 9.83017 13.5 9.27012V6.47012Z"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
stroke: "currentColor",
|
|
39
|
+
"stroke-width": "inherit",
|
|
40
|
+
"stroke-linecap": "round",
|
|
41
|
+
"stroke-linejoin": "round",
|
|
42
|
+
d: "M2.5 6.47012C2.5 5.91006 2.5 5.63004 2.60899 5.41613C2.70487 5.22796 2.85785 5.07498 3.04601 4.97911C3.25992 4.87012 3.53995 4.87012 4.1 4.87012H8.9C9.46005 4.87012 9.74008 4.87012 9.95399 4.97911C10.1422 5.07498 10.2951 5.22796 10.391 5.41613C10.5 5.63004 10.5 5.91006 10.5 6.47012V9.27012C10.5 9.83017 10.5 10.1102 10.391 10.3241C10.2951 10.5123 10.1422 10.6653 9.95399 10.7611C9.74008 10.8701 9.46005 10.8701 8.9 10.8701H4.1C3.53995 10.8701 3.25992 10.8701 3.04601 10.7611C2.85785 10.6653 2.70487 10.5123 2.60899 10.3241C2.5 10.1102 2.5 9.83017 2.5 9.27012V6.47012Z"
|
|
43
|
+
}
|
|
44
|
+
),
|
|
45
|
+
/* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
46
|
+
"path",
|
|
47
|
+
{
|
|
48
|
+
stroke: "currentColor",
|
|
49
|
+
"stroke-width": "inherit",
|
|
50
|
+
"stroke-linecap": "round",
|
|
51
|
+
"stroke-linejoin": "round",
|
|
52
|
+
d: "M2.5 15.6C2.5 15.04 2.5 14.76 2.60899 14.546C2.70487 14.3579 2.85785 14.2049 3.04601 14.109C3.25992 14 3.53995 14 4.1 14H8.9C9.46005 14 9.74008 14 9.95399 14.109C10.1422 14.2049 10.2951 14.3579 10.391 14.546C10.5 14.76 10.5 15.04 10.5 15.6V18.4C10.5 18.9601 10.5 19.2401 10.391 19.454C10.2951 19.6422 10.1422 19.7952 9.95399 19.891C9.74008 20 9.46005 20 8.9 20H4.1C3.53995 20 3.25992 20 3.04601 19.891C2.85785 19.7952 2.70487 19.6422 2.60899 19.454C2.5 19.2401 2.5 18.9601 2.5 18.4V15.6Z"
|
|
53
|
+
}
|
|
54
|
+
),
|
|
55
|
+
/* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
stroke: "currentColor",
|
|
59
|
+
"stroke-width": "inherit",
|
|
60
|
+
"stroke-linecap": "round",
|
|
61
|
+
"stroke-linejoin": "round",
|
|
62
|
+
d: "M13.4801 15.6144C13.4801 15.0543 13.4801 14.7743 13.5891 14.5604C13.685 14.3722 13.838 14.2192 14.0261 14.1234C14.2401 14.0144 14.5201 14.0144 15.0801 14.0144H19.8801C20.4402 14.0144 20.7202 14.0144 20.9341 14.1234C21.1223 14.2192 21.2753 14.3722 21.3711 14.5604C21.4801 14.7743 21.4801 15.0543 21.4801 15.6144V18.4144C21.4801 18.9744 21.4801 19.2545 21.3711 19.4684C21.2753 19.6565 21.1223 19.8095 20.9341 19.9054C20.7202 20.0144 20.4402 20.0144 19.8801 20.0144H15.0801C14.5201 20.0144 14.2401 20.0144 14.0261 19.9054C13.838 19.8095 13.685 19.6565 13.5891 19.4684C13.4801 19.2545 13.4801 18.9744 13.4801 18.4144V15.6144Z"
|
|
63
|
+
}
|
|
64
|
+
)
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
);
|
|
68
|
+
};
|
|
69
|
+
const ForwardRef = React.forwardRef(Block);
|
|
70
|
+
const Block$1 = ForwardRef;
|
|
71
|
+
module.exports = Block$1;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { j as jsxRuntimeExports } from "../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const Block = (props, ref) => {
|
|
4
|
+
if (typeof props.size === "number") {
|
|
5
|
+
const { size, ...rest } = props;
|
|
6
|
+
props = {
|
|
7
|
+
...rest,
|
|
8
|
+
height: size,
|
|
9
|
+
width: size
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
13
|
+
"svg",
|
|
14
|
+
{
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
width: "1em",
|
|
17
|
+
height: "1em",
|
|
18
|
+
fill: "none",
|
|
19
|
+
viewBox: "0 0 24 24",
|
|
20
|
+
strokeWidth: "1.5",
|
|
21
|
+
ref,
|
|
22
|
+
...props,
|
|
23
|
+
children: [
|
|
24
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
stroke: "currentColor",
|
|
28
|
+
"stroke-width": "inherit",
|
|
29
|
+
"stroke-linecap": "round",
|
|
30
|
+
"stroke-linejoin": "round",
|
|
31
|
+
d: "M13.5 6.47012C13.5 5.91006 13.5 5.63004 13.609 5.41613C13.7049 5.22796 13.8578 5.07498 14.046 4.97911C14.2599 4.87012 14.5399 4.87012 15.1 4.87012H19.9C20.4601 4.87012 20.7401 4.87012 20.954 4.97911C21.1422 5.07498 21.2951 5.22796 21.391 5.41613C21.5 5.63004 21.5 5.91006 21.5 6.47012V9.27012C21.5 9.83017 21.5 10.1102 21.391 10.3241C21.2951 10.5123 21.1422 10.6653 20.954 10.7611C20.7401 10.8701 20.4601 10.8701 19.9 10.8701H15.1C14.5399 10.8701 14.2599 10.8701 14.046 10.7611C13.8578 10.6653 13.7049 10.5123 13.609 10.3241C13.5 10.1102 13.5 9.83017 13.5 9.27012V6.47012Z"
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
35
|
+
"path",
|
|
36
|
+
{
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
"stroke-width": "inherit",
|
|
39
|
+
"stroke-linecap": "round",
|
|
40
|
+
"stroke-linejoin": "round",
|
|
41
|
+
d: "M2.5 6.47012C2.5 5.91006 2.5 5.63004 2.60899 5.41613C2.70487 5.22796 2.85785 5.07498 3.04601 4.97911C3.25992 4.87012 3.53995 4.87012 4.1 4.87012H8.9C9.46005 4.87012 9.74008 4.87012 9.95399 4.97911C10.1422 5.07498 10.2951 5.22796 10.391 5.41613C10.5 5.63004 10.5 5.91006 10.5 6.47012V9.27012C10.5 9.83017 10.5 10.1102 10.391 10.3241C10.2951 10.5123 10.1422 10.6653 9.95399 10.7611C9.74008 10.8701 9.46005 10.8701 8.9 10.8701H4.1C3.53995 10.8701 3.25992 10.8701 3.04601 10.7611C2.85785 10.6653 2.70487 10.5123 2.60899 10.3241C2.5 10.1102 2.5 9.83017 2.5 9.27012V6.47012Z"
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
45
|
+
"path",
|
|
46
|
+
{
|
|
47
|
+
stroke: "currentColor",
|
|
48
|
+
"stroke-width": "inherit",
|
|
49
|
+
"stroke-linecap": "round",
|
|
50
|
+
"stroke-linejoin": "round",
|
|
51
|
+
d: "M2.5 15.6C2.5 15.04 2.5 14.76 2.60899 14.546C2.70487 14.3579 2.85785 14.2049 3.04601 14.109C3.25992 14 3.53995 14 4.1 14H8.9C9.46005 14 9.74008 14 9.95399 14.109C10.1422 14.2049 10.2951 14.3579 10.391 14.546C10.5 14.76 10.5 15.04 10.5 15.6V18.4C10.5 18.9601 10.5 19.2401 10.391 19.454C10.2951 19.6422 10.1422 19.7952 9.95399 19.891C9.74008 20 9.46005 20 8.9 20H4.1C3.53995 20 3.25992 20 3.04601 19.891C2.85785 19.7952 2.70487 19.6422 2.60899 19.454C2.5 19.2401 2.5 18.9601 2.5 18.4V15.6Z"
|
|
52
|
+
}
|
|
53
|
+
),
|
|
54
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
55
|
+
"path",
|
|
56
|
+
{
|
|
57
|
+
stroke: "currentColor",
|
|
58
|
+
"stroke-width": "inherit",
|
|
59
|
+
"stroke-linecap": "round",
|
|
60
|
+
"stroke-linejoin": "round",
|
|
61
|
+
d: "M13.4801 15.6144C13.4801 15.0543 13.4801 14.7743 13.5891 14.5604C13.685 14.3722 13.838 14.2192 14.0261 14.1234C14.2401 14.0144 14.5201 14.0144 15.0801 14.0144H19.8801C20.4402 14.0144 20.7202 14.0144 20.9341 14.1234C21.1223 14.2192 21.2753 14.3722 21.3711 14.5604C21.4801 14.7743 21.4801 15.0543 21.4801 15.6144V18.4144C21.4801 18.9744 21.4801 19.2545 21.3711 19.4684C21.2753 19.6565 21.1223 19.8095 20.9341 19.9054C20.7202 20.0144 20.4402 20.0144 19.8801 20.0144H15.0801C14.5201 20.0144 14.2401 20.0144 14.0261 19.9054C13.838 19.8095 13.685 19.6565 13.5891 19.4684C13.4801 19.2545 13.4801 18.9744 13.4801 18.4144V15.6144Z"
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
);
|
|
67
|
+
};
|
|
68
|
+
const ForwardRef = forwardRef(Block);
|
|
69
|
+
const Block$1 = ForwardRef;
|
|
70
|
+
export {
|
|
71
|
+
Block$1 as default
|
|
72
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.cjs");
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const TableList = (props, ref) => {
|
|
5
|
+
if (typeof props.size === "number") {
|
|
6
|
+
const { size, ...rest } = props;
|
|
7
|
+
props = {
|
|
8
|
+
...rest,
|
|
9
|
+
height: size,
|
|
10
|
+
width: size
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
return /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
14
|
+
"svg",
|
|
15
|
+
{
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
width: "1em",
|
|
18
|
+
height: "1em",
|
|
19
|
+
fill: "none",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
strokeWidth: "1.5",
|
|
22
|
+
ref,
|
|
23
|
+
...props,
|
|
24
|
+
children: /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M3 9.5H21M3 14.5H21M7.8 4.5H16.2C17.8802 4.5 18.7202 4.5 19.362 4.82698C19.9265 5.1146 20.3854 5.57354 20.673 6.13803C21 6.77976 21 6.61984 21 8.3V15.7C21 17.3802 21 17.2202 20.673 17.862C20.3854 18.4265 19.9265 18.8854 19.362 19.173C18.7202 19.5 17.8802 19.5 16.2 19.5H7.8C6.11984 19.5 5.27976 19.5 4.63803 19.173C4.07354 18.8854 3.6146 18.4265 3.32698 17.862C3 17.2202 3 17.3802 3 15.7V8.3C3 6.61984 3 6.77976 3.32698 6.13803C3.6146 5.57354 4.07354 5.1146 4.63803 4.82698C5.27976 4.5 6.11984 4.5 7.8 4.5Z",
|
|
28
|
+
stroke: "currentColor",
|
|
29
|
+
"stroke-width": "inherit",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round"
|
|
32
|
+
}
|
|
33
|
+
)
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
const ForwardRef = React.forwardRef(TableList);
|
|
38
|
+
const TableList$1 = ForwardRef;
|
|
39
|
+
module.exports = TableList$1;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { j as jsxRuntimeExports } from "../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const TableList = (props, ref) => {
|
|
4
|
+
if (typeof props.size === "number") {
|
|
5
|
+
const { size, ...rest } = props;
|
|
6
|
+
props = {
|
|
7
|
+
...rest,
|
|
8
|
+
height: size,
|
|
9
|
+
width: size
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
13
|
+
"svg",
|
|
14
|
+
{
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
width: "1em",
|
|
17
|
+
height: "1em",
|
|
18
|
+
fill: "none",
|
|
19
|
+
viewBox: "0 0 24 24",
|
|
20
|
+
strokeWidth: "1.5",
|
|
21
|
+
ref,
|
|
22
|
+
...props,
|
|
23
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
24
|
+
"path",
|
|
25
|
+
{
|
|
26
|
+
d: "M3 9.5H21M3 14.5H21M7.8 4.5H16.2C17.8802 4.5 18.7202 4.5 19.362 4.82698C19.9265 5.1146 20.3854 5.57354 20.673 6.13803C21 6.77976 21 6.61984 21 8.3V15.7C21 17.3802 21 17.2202 20.673 17.862C20.3854 18.4265 19.9265 18.8854 19.362 19.173C18.7202 19.5 17.8802 19.5 16.2 19.5H7.8C6.11984 19.5 5.27976 19.5 4.63803 19.173C4.07354 18.8854 3.6146 18.4265 3.32698 17.862C3 17.2202 3 17.3802 3 15.7V8.3C3 6.61984 3 6.77976 3.32698 6.13803C3.6146 5.57354 4.07354 5.1146 4.63803 4.82698C5.27976 4.5 6.11984 4.5 7.8 4.5Z",
|
|
27
|
+
stroke: "currentColor",
|
|
28
|
+
"stroke-width": "inherit",
|
|
29
|
+
"stroke-linecap": "round",
|
|
30
|
+
"stroke-linejoin": "round"
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
const ForwardRef = forwardRef(TableList);
|
|
37
|
+
const TableList$1 = ForwardRef;
|
|
38
|
+
export {
|
|
39
|
+
TableList$1 as default
|
|
40
|
+
};
|