@tidbcloud/uikit 2.7.0 → 2.7.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.
- package/CHANGELOG.md +15 -0
- package/dist/icons/index.cjs +9 -0
- package/dist/icons/index.d.cts +12 -0
- package/dist/icons/index.d.mts +12 -0
- package/dist/icons/index.mjs +9 -0
- package/dist/icons/raw/DProject.svg +3 -0
- package/dist/icons/raw/ExpandLine.svg +3 -0
- package/dist/icons/raw/XProject.svg +3 -0
- package/dist/icons/react/DProject.cjs +51 -0
- package/dist/icons/react/DProject.d.cts +3 -0
- package/dist/icons/react/DProject.d.mts +3 -0
- package/dist/icons/react/DProject.mjs +51 -0
- package/dist/icons/react/ExpandLine.cjs +52 -0
- package/dist/icons/react/ExpandLine.d.cts +3 -0
- package/dist/icons/react/ExpandLine.d.mts +3 -0
- package/dist/icons/react/ExpandLine.mjs +52 -0
- package/dist/icons/react/XProject.cjs +51 -0
- package/dist/icons/react/XProject.d.cts +3 -0
- package/dist/icons/react/XProject.d.mts +3 -0
- package/dist/icons/react/XProject.mjs +51 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @tidbcloud/uikit
|
|
2
2
|
|
|
3
|
+
## 2.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat(uikit): add project icons ([#631](https://github.com/tidbcloud/tidbcloud-uikit/pull/631))
|
|
8
|
+
- ci: use single publish workflow for trusted publisher ([#630](https://github.com/tidbcloud/tidbcloud-uikit/pull/630))
|
|
9
|
+
- feat(uikit): add project icons ([#631](https://github.com/tidbcloud/tidbcloud-uikit/pull/631))
|
|
10
|
+
- ci: use single publish workflow for trusted publisher ([#630](https://github.com/tidbcloud/tidbcloud-uikit/pull/630))
|
|
11
|
+
|
|
12
|
+
## 2.7.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Feat/expand line icon ([#627](https://github.com/tidbcloud/tidbcloud-uikit/pull/627))
|
|
17
|
+
|
|
3
18
|
## 2.7.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/dist/icons/index.cjs
CHANGED
|
@@ -398,6 +398,7 @@ const Cursor04 = require("./react/Cursor04.cjs");
|
|
|
398
398
|
const CursorBox = require("./react/CursorBox.cjs");
|
|
399
399
|
const CursorClick01 = require("./react/CursorClick01.cjs");
|
|
400
400
|
const CursorClick02 = require("./react/CursorClick02.cjs");
|
|
401
|
+
const DProject = require("./react/DProject.cjs");
|
|
401
402
|
const Dashboard = require("./react/Dashboard.cjs");
|
|
402
403
|
const Data = require("./react/Data.cjs");
|
|
403
404
|
const DataAppAi = require("./react/DataAppAi.cjs");
|
|
@@ -468,6 +469,7 @@ const Expand04 = require("./react/Expand04.cjs");
|
|
|
468
469
|
const Expand05 = require("./react/Expand05.cjs");
|
|
469
470
|
const Expand06 = require("./react/Expand06.cjs");
|
|
470
471
|
const Expand08 = require("./react/Expand08.cjs");
|
|
472
|
+
const ExpandLine = require("./react/ExpandLine.cjs");
|
|
471
473
|
const Eye = require("./react/Eye.cjs");
|
|
472
474
|
const EyeOff = require("./react/EyeOff.cjs");
|
|
473
475
|
const FaceContent = require("./react/FaceContent.cjs");
|
|
@@ -1242,6 +1244,7 @@ const X = require("./react/X.cjs");
|
|
|
1242
1244
|
const XAxis = require("./react/XAxis.cjs");
|
|
1243
1245
|
const XCircle = require("./react/XCircle.cjs");
|
|
1244
1246
|
const XClose = require("./react/XClose.cjs");
|
|
1247
|
+
const XProject = require("./react/XProject.cjs");
|
|
1245
1248
|
const XSquare = require("./react/XSquare.cjs");
|
|
1246
1249
|
const YAxis = require("./react/YAxis.cjs");
|
|
1247
1250
|
const Youtube = require("./react/Youtube.cjs");
|
|
@@ -1662,6 +1665,7 @@ const IconCursor04 = Cursor04.default;
|
|
|
1662
1665
|
const IconCursorBox = CursorBox.default;
|
|
1663
1666
|
const IconCursorClick01 = CursorClick01.default;
|
|
1664
1667
|
const IconCursorClick02 = CursorClick02.default;
|
|
1668
|
+
const IconDProject = DProject.default;
|
|
1665
1669
|
const IconDashboard = Dashboard.default;
|
|
1666
1670
|
const IconData = Data.default;
|
|
1667
1671
|
const IconDataAppAi = DataAppAi.default;
|
|
@@ -1732,6 +1736,7 @@ const IconExpand04 = Expand04.default;
|
|
|
1732
1736
|
const IconExpand05 = Expand05.default;
|
|
1733
1737
|
const IconExpand06 = Expand06.default;
|
|
1734
1738
|
const IconExpand08 = Expand08.default;
|
|
1739
|
+
const IconExpandLine = ExpandLine.default;
|
|
1735
1740
|
const IconEye = Eye.default;
|
|
1736
1741
|
const IconEyeOff = EyeOff.default;
|
|
1737
1742
|
const IconFaceContent = FaceContent.default;
|
|
@@ -2506,6 +2511,7 @@ const IconX = X.default;
|
|
|
2506
2511
|
const IconXAxis = XAxis.default;
|
|
2507
2512
|
const IconXCircle = XCircle.default;
|
|
2508
2513
|
const IconXClose = XClose.default;
|
|
2514
|
+
const IconXProject = XProject.default;
|
|
2509
2515
|
const IconXSquare = XSquare.default;
|
|
2510
2516
|
const IconYAxis = YAxis.default;
|
|
2511
2517
|
const IconYoutube = Youtube.default;
|
|
@@ -2929,6 +2935,7 @@ exports.IconCursor04 = IconCursor04;
|
|
|
2929
2935
|
exports.IconCursorBox = IconCursorBox;
|
|
2930
2936
|
exports.IconCursorClick01 = IconCursorClick01;
|
|
2931
2937
|
exports.IconCursorClick02 = IconCursorClick02;
|
|
2938
|
+
exports.IconDProject = IconDProject;
|
|
2932
2939
|
exports.IconDashboard = IconDashboard;
|
|
2933
2940
|
exports.IconData = IconData;
|
|
2934
2941
|
exports.IconDataAppAi = IconDataAppAi;
|
|
@@ -2999,6 +3006,7 @@ exports.IconExpand04 = IconExpand04;
|
|
|
2999
3006
|
exports.IconExpand05 = IconExpand05;
|
|
3000
3007
|
exports.IconExpand06 = IconExpand06;
|
|
3001
3008
|
exports.IconExpand08 = IconExpand08;
|
|
3009
|
+
exports.IconExpandLine = IconExpandLine;
|
|
3002
3010
|
exports.IconEye = IconEye;
|
|
3003
3011
|
exports.IconEyeOff = IconEyeOff;
|
|
3004
3012
|
exports.IconFaceContent = IconFaceContent;
|
|
@@ -3782,6 +3790,7 @@ exports.IconX = IconX;
|
|
|
3782
3790
|
exports.IconXAxis = IconXAxis;
|
|
3783
3791
|
exports.IconXCircle = IconXCircle;
|
|
3784
3792
|
exports.IconXClose = IconXClose;
|
|
3793
|
+
exports.IconXProject = IconXProject;
|
|
3785
3794
|
exports.IconXSquare = IconXSquare;
|
|
3786
3795
|
exports.IconYAxis = IconYAxis;
|
|
3787
3796
|
exports.IconYoutube = IconYoutube;
|
package/dist/icons/index.d.cts
CHANGED
|
@@ -1595,6 +1595,10 @@ export declare const IconCursorClick01: React.FC<IconProps>;
|
|
|
1595
1595
|
* @preview 
|
|
1596
1596
|
*/
|
|
1597
1597
|
export declare const IconCursorClick02: React.FC<IconProps>;
|
|
1598
|
+
/**
|
|
1599
|
+
* @preview 
|
|
1600
|
+
*/
|
|
1601
|
+
export declare const IconDProject: React.FC<IconProps>;
|
|
1598
1602
|
/**
|
|
1599
1603
|
* @preview 
|
|
1600
1604
|
*/
|
|
@@ -1875,6 +1879,10 @@ export declare const IconExpand06: React.FC<IconProps>;
|
|
|
1875
1879
|
* @preview 
|
|
1876
1880
|
*/
|
|
1877
1881
|
export declare const IconExpand08: React.FC<IconProps>;
|
|
1882
|
+
/**
|
|
1883
|
+
* @preview 
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const IconExpandLine: React.FC<IconProps>;
|
|
1878
1886
|
/**
|
|
1879
1887
|
* @preview 
|
|
1880
1888
|
*/
|
|
@@ -4971,6 +4979,10 @@ export declare const IconXCircle: React.FC<IconProps>;
|
|
|
4971
4979
|
* @preview 
|
|
4972
4980
|
*/
|
|
4973
4981
|
export declare const IconXClose: React.FC<IconProps>;
|
|
4982
|
+
/**
|
|
4983
|
+
* @preview 
|
|
4984
|
+
*/
|
|
4985
|
+
export declare const IconXProject: React.FC<IconProps>;
|
|
4974
4986
|
/**
|
|
4975
4987
|
* @preview 
|
|
4976
4988
|
*/
|
package/dist/icons/index.d.mts
CHANGED
|
@@ -1595,6 +1595,10 @@ export declare const IconCursorClick01: React.FC<IconProps>;
|
|
|
1595
1595
|
* @preview 
|
|
1596
1596
|
*/
|
|
1597
1597
|
export declare const IconCursorClick02: React.FC<IconProps>;
|
|
1598
|
+
/**
|
|
1599
|
+
* @preview 
|
|
1600
|
+
*/
|
|
1601
|
+
export declare const IconDProject: React.FC<IconProps>;
|
|
1598
1602
|
/**
|
|
1599
1603
|
* @preview 
|
|
1600
1604
|
*/
|
|
@@ -1875,6 +1879,10 @@ export declare const IconExpand06: React.FC<IconProps>;
|
|
|
1875
1879
|
* @preview 
|
|
1876
1880
|
*/
|
|
1877
1881
|
export declare const IconExpand08: React.FC<IconProps>;
|
|
1882
|
+
/**
|
|
1883
|
+
* @preview 
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const IconExpandLine: React.FC<IconProps>;
|
|
1878
1886
|
/**
|
|
1879
1887
|
* @preview 
|
|
1880
1888
|
*/
|
|
@@ -4971,6 +4979,10 @@ export declare const IconXCircle: React.FC<IconProps>;
|
|
|
4971
4979
|
* @preview 
|
|
4972
4980
|
*/
|
|
4973
4981
|
export declare const IconXClose: React.FC<IconProps>;
|
|
4982
|
+
/**
|
|
4983
|
+
* @preview 
|
|
4984
|
+
*/
|
|
4985
|
+
export declare const IconXProject: React.FC<IconProps>;
|
|
4974
4986
|
/**
|
|
4975
4987
|
* @preview 
|
|
4976
4988
|
*/
|
package/dist/icons/index.mjs
CHANGED
|
@@ -396,6 +396,7 @@ import Cursor04 from "./react/Cursor04.mjs";
|
|
|
396
396
|
import CursorBox from "./react/CursorBox.mjs";
|
|
397
397
|
import CursorClick01 from "./react/CursorClick01.mjs";
|
|
398
398
|
import CursorClick02 from "./react/CursorClick02.mjs";
|
|
399
|
+
import DProject from "./react/DProject.mjs";
|
|
399
400
|
import Dashboard from "./react/Dashboard.mjs";
|
|
400
401
|
import Data from "./react/Data.mjs";
|
|
401
402
|
import DataAppAi from "./react/DataAppAi.mjs";
|
|
@@ -466,6 +467,7 @@ import Expand04 from "./react/Expand04.mjs";
|
|
|
466
467
|
import Expand05 from "./react/Expand05.mjs";
|
|
467
468
|
import Expand06 from "./react/Expand06.mjs";
|
|
468
469
|
import Expand08 from "./react/Expand08.mjs";
|
|
470
|
+
import ExpandLine from "./react/ExpandLine.mjs";
|
|
469
471
|
import Eye from "./react/Eye.mjs";
|
|
470
472
|
import EyeOff from "./react/EyeOff.mjs";
|
|
471
473
|
import FaceContent from "./react/FaceContent.mjs";
|
|
@@ -1240,6 +1242,7 @@ import X from "./react/X.mjs";
|
|
|
1240
1242
|
import XAxis from "./react/XAxis.mjs";
|
|
1241
1243
|
import XCircle from "./react/XCircle.mjs";
|
|
1242
1244
|
import XClose from "./react/XClose.mjs";
|
|
1245
|
+
import XProject from "./react/XProject.mjs";
|
|
1243
1246
|
import XSquare from "./react/XSquare.mjs";
|
|
1244
1247
|
import YAxis from "./react/YAxis.mjs";
|
|
1245
1248
|
import Youtube from "./react/Youtube.mjs";
|
|
@@ -1660,6 +1663,7 @@ const IconCursor04 = Cursor04;
|
|
|
1660
1663
|
const IconCursorBox = CursorBox;
|
|
1661
1664
|
const IconCursorClick01 = CursorClick01;
|
|
1662
1665
|
const IconCursorClick02 = CursorClick02;
|
|
1666
|
+
const IconDProject = DProject;
|
|
1663
1667
|
const IconDashboard = Dashboard;
|
|
1664
1668
|
const IconData = Data;
|
|
1665
1669
|
const IconDataAppAi = DataAppAi;
|
|
@@ -1730,6 +1734,7 @@ const IconExpand04 = Expand04;
|
|
|
1730
1734
|
const IconExpand05 = Expand05;
|
|
1731
1735
|
const IconExpand06 = Expand06;
|
|
1732
1736
|
const IconExpand08 = Expand08;
|
|
1737
|
+
const IconExpandLine = ExpandLine;
|
|
1733
1738
|
const IconEye = Eye;
|
|
1734
1739
|
const IconEyeOff = EyeOff;
|
|
1735
1740
|
const IconFaceContent = FaceContent;
|
|
@@ -2504,6 +2509,7 @@ const IconX = X;
|
|
|
2504
2509
|
const IconXAxis = XAxis;
|
|
2505
2510
|
const IconXCircle = XCircle;
|
|
2506
2511
|
const IconXClose = XClose;
|
|
2512
|
+
const IconXProject = XProject;
|
|
2507
2513
|
const IconXSquare = XSquare;
|
|
2508
2514
|
const IconYAxis = YAxis;
|
|
2509
2515
|
const IconYoutube = Youtube;
|
|
@@ -2928,6 +2934,7 @@ export {
|
|
|
2928
2934
|
IconCursorBox,
|
|
2929
2935
|
IconCursorClick01,
|
|
2930
2936
|
IconCursorClick02,
|
|
2937
|
+
IconDProject,
|
|
2931
2938
|
IconDashboard,
|
|
2932
2939
|
IconData,
|
|
2933
2940
|
IconDataAppAi,
|
|
@@ -2998,6 +3005,7 @@ export {
|
|
|
2998
3005
|
IconExpand05,
|
|
2999
3006
|
IconExpand06,
|
|
3000
3007
|
IconExpand08,
|
|
3008
|
+
IconExpandLine,
|
|
3001
3009
|
IconEye,
|
|
3002
3010
|
IconEyeOff,
|
|
3003
3011
|
IconFaceContent,
|
|
@@ -3781,6 +3789,7 @@ export {
|
|
|
3781
3789
|
IconXAxis,
|
|
3782
3790
|
IconXCircle,
|
|
3783
3791
|
IconXClose,
|
|
3792
|
+
IconXProject,
|
|
3784
3793
|
IconXSquare,
|
|
3785
3794
|
IconYAxis,
|
|
3786
3795
|
IconYoutube,
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="22" height="20" viewBox="0 0 22 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM7.67285 8.26355V7.51355C7.25864 7.51355 6.92285 7.84934 6.92285 8.26355H7.67285ZM7.67285 15.3297H6.92285C6.92285 15.7439 7.25864 16.0797 7.67285 16.0797V15.3297ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM7.67285 8.26355H6.92285V15.3297H7.67285H8.42285V8.26355H7.67285ZM7.67285 8.26355V9.01355C9.47567 9.01355 10.8655 9.33514 11.7771 9.86886C12.6547 10.3827 13.0771 11.0763 13.0771 11.9479H13.8271H14.5771C14.5771 10.4619 13.7971 9.31335 12.535 8.57439C11.3068 7.85534 9.61948 7.51355 7.67285 7.51355V8.26355ZM13.8271 11.9479H13.0771C13.0771 12.4562 12.9918 12.8362 12.8418 13.1284C12.696 13.4124 12.4658 13.6598 12.0947 13.8713C11.3098 14.3185 9.94305 14.5797 7.67285 14.5797V15.3297V16.0797C9.97857 16.0797 11.689 15.8288 12.8373 15.1745C13.4327 14.8352 13.8831 14.3846 14.1763 13.8134C14.4652 13.2505 14.5771 12.6183 14.5771 11.9479H13.8271Z" fill="#383E40"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.7771 6.13727H0.75M18.7771 0.75H0.75M18.7786 11.5245H0.751465M18.7786 16.7793H0.751465" stroke="#383E40" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="22" height="20" viewBox="0 0 22 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM11.0792 5.08553C11.2644 5.45602 11.7149 5.60618 12.0854 5.42094C12.4559 5.2357 12.6061 4.7852 12.4208 4.41471L11.75 4.75012L11.0792 5.08553ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM14.2125 9.26463C14.5054 8.97173 14.5053 8.49686 14.2124 8.20397C13.9195 7.91108 13.4447 7.91109 13.1518 8.20399L13.6821 8.73431L14.2125 9.26463ZM7.28753 14.0685C6.99464 14.3614 6.99465 14.8363 7.28755 15.1292C7.58045 15.422 8.05533 15.422 8.34821 15.1291L7.81787 14.5988L7.28753 14.0685ZM8.34821 8.20399C8.05533 7.91109 7.58045 7.91108 7.28755 8.20397C6.99465 8.49686 6.99464 8.97173 7.28753 9.26463L7.81787 8.73431L8.34821 8.20399ZM13.1518 15.1291C13.4447 15.422 13.9195 15.422 14.2124 15.1292C14.5053 14.8363 14.5054 14.3614 14.2125 14.0685L13.6821 14.5988L13.1518 15.1291ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM13.6821 8.73431L13.1518 8.20399L10.2197 11.1362L10.75 11.6666L11.2803 12.1969L14.2125 9.26463L13.6821 8.73431ZM10.75 11.6666L10.2197 11.1362L7.28753 14.0685L7.81787 14.5988L8.34821 15.1291L11.2803 12.1969L10.75 11.6666ZM7.81787 8.73431L7.28753 9.26463L10.2197 12.1969L10.75 11.6666L11.2803 11.1362L8.34821 8.20399L7.81787 8.73431ZM10.75 11.6666L10.2197 12.1969L13.1518 15.1291L13.6821 14.5988L14.2125 14.0685L11.2803 11.1362L10.75 11.6666Z" fill="#383E40"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const React = require("react");
|
|
5
|
+
const Box = require("../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.cjs");
|
|
6
|
+
const IconDProject = (props, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: "1em",
|
|
11
|
+
height: "1em",
|
|
12
|
+
viewBox: "0 0 22 20",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
strokeWidth: "1.5",
|
|
16
|
+
ref,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM7.67285 8.26355V7.51355C7.25864 7.51355 6.92285 7.84934 6.92285 8.26355H7.67285ZM7.67285 15.3297H6.92285C6.92285 15.7439 7.25864 16.0797 7.67285 16.0797V15.3297ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM7.67285 8.26355H6.92285V15.3297H7.67285H8.42285V8.26355H7.67285ZM7.67285 8.26355V9.01355C9.47567 9.01355 10.8655 9.33514 11.7771 9.86886C12.6547 10.3827 13.0771 11.0763 13.0771 11.9479H13.8271H14.5771C14.5771 10.4619 13.7971 9.31335 12.535 8.57439C11.3068 7.85534 9.61948 7.51355 7.67285 7.51355V8.26355ZM13.8271 11.9479H13.0771C13.0771 12.4562 12.9918 12.8362 12.8418 13.1284C12.696 13.4124 12.4658 13.6598 12.0947 13.8713C11.3098 14.3185 9.94305 14.5797 7.67285 14.5797V15.3297V16.0797C9.97857 16.0797 11.689 15.8288 12.8373 15.1745C13.4327 14.8352 13.8831 14.3846 14.1763 13.8134C14.4652 13.2505 14.5771 12.6183 14.5771 11.9479H13.8271Z",
|
|
22
|
+
fill: "#383E40",
|
|
23
|
+
strokeWidth: "inherit",
|
|
24
|
+
stroke: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
const ForwardRef = React.forwardRef(IconDProject);
|
|
31
|
+
const DProject = React.forwardRef((props, ref) => {
|
|
32
|
+
if (typeof props.size === "number") {
|
|
33
|
+
const { size, ...rest } = props;
|
|
34
|
+
props = {
|
|
35
|
+
...rest,
|
|
36
|
+
w: size,
|
|
37
|
+
h: size
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
41
|
+
Box.Box,
|
|
42
|
+
{
|
|
43
|
+
ref,
|
|
44
|
+
...props,
|
|
45
|
+
component: ForwardRef,
|
|
46
|
+
className: ["tiui-icon", "DProject", props.className].join(" ")
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
DProject.displayName = "IconDProject";
|
|
51
|
+
exports.default = DProject;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { Box } from "../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.mjs";
|
|
4
|
+
const IconDProject = (props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
viewBox: "0 0 22 20",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
strokeWidth: "1.5",
|
|
14
|
+
ref,
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM7.67285 8.26355V7.51355C7.25864 7.51355 6.92285 7.84934 6.92285 8.26355H7.67285ZM7.67285 15.3297H6.92285C6.92285 15.7439 7.25864 16.0797 7.67285 16.0797V15.3297ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM7.67285 8.26355H6.92285V15.3297H7.67285H8.42285V8.26355H7.67285ZM7.67285 8.26355V9.01355C9.47567 9.01355 10.8655 9.33514 11.7771 9.86886C12.6547 10.3827 13.0771 11.0763 13.0771 11.9479H13.8271H14.5771C14.5771 10.4619 13.7971 9.31335 12.535 8.57439C11.3068 7.85534 9.61948 7.51355 7.67285 7.51355V8.26355ZM13.8271 11.9479H13.0771C13.0771 12.4562 12.9918 12.8362 12.8418 13.1284C12.696 13.4124 12.4658 13.6598 12.0947 13.8713C11.3098 14.3185 9.94305 14.5797 7.67285 14.5797V15.3297V16.0797C9.97857 16.0797 11.689 15.8288 12.8373 15.1745C13.4327 14.8352 13.8831 14.3846 14.1763 13.8134C14.4652 13.2505 14.5771 12.6183 14.5771 11.9479H13.8271Z",
|
|
20
|
+
fill: "#383E40",
|
|
21
|
+
strokeWidth: "inherit",
|
|
22
|
+
stroke: "currentColor"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
const ForwardRef = forwardRef(IconDProject);
|
|
29
|
+
const DProject = forwardRef((props, ref) => {
|
|
30
|
+
if (typeof props.size === "number") {
|
|
31
|
+
const { size, ...rest } = props;
|
|
32
|
+
props = {
|
|
33
|
+
...rest,
|
|
34
|
+
w: size,
|
|
35
|
+
h: size
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
return /* @__PURE__ */ jsx(
|
|
39
|
+
Box,
|
|
40
|
+
{
|
|
41
|
+
ref,
|
|
42
|
+
...props,
|
|
43
|
+
component: ForwardRef,
|
|
44
|
+
className: ["tiui-icon", "DProject", props.className].join(" ")
|
|
45
|
+
}
|
|
46
|
+
);
|
|
47
|
+
});
|
|
48
|
+
DProject.displayName = "IconDProject";
|
|
49
|
+
export {
|
|
50
|
+
DProject as default
|
|
51
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const React = require("react");
|
|
5
|
+
const Box = require("../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.cjs");
|
|
6
|
+
const IconExpandLine = (props, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: "1em",
|
|
11
|
+
height: "1em",
|
|
12
|
+
viewBox: "0 0 20 18",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
strokeWidth: "1.5",
|
|
16
|
+
ref,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M18.7771 6.13727H0.75M18.7771 0.75H0.75M18.7786 11.5245H0.751465M18.7786 16.7793H0.751465",
|
|
22
|
+
stroke: "currentColor",
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round",
|
|
25
|
+
strokeWidth: "inherit"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
const ForwardRef = React.forwardRef(IconExpandLine);
|
|
32
|
+
const ExpandLine = React.forwardRef((props, ref) => {
|
|
33
|
+
if (typeof props.size === "number") {
|
|
34
|
+
const { size, ...rest } = props;
|
|
35
|
+
props = {
|
|
36
|
+
...rest,
|
|
37
|
+
w: size,
|
|
38
|
+
h: size
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
42
|
+
Box.Box,
|
|
43
|
+
{
|
|
44
|
+
ref,
|
|
45
|
+
...props,
|
|
46
|
+
component: ForwardRef,
|
|
47
|
+
className: ["tiui-icon", "ExpandLine", props.className].join(" ")
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
});
|
|
51
|
+
ExpandLine.displayName = "IconExpandLine";
|
|
52
|
+
exports.default = ExpandLine;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { Box } from "../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.mjs";
|
|
4
|
+
const IconExpandLine = (props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
viewBox: "0 0 20 18",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
strokeWidth: "1.5",
|
|
14
|
+
ref,
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M18.7771 6.13727H0.75M18.7771 0.75H0.75M18.7786 11.5245H0.751465M18.7786 16.7793H0.751465",
|
|
20
|
+
stroke: "currentColor",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round",
|
|
23
|
+
strokeWidth: "inherit"
|
|
24
|
+
}
|
|
25
|
+
)
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
const ForwardRef = forwardRef(IconExpandLine);
|
|
30
|
+
const ExpandLine = forwardRef((props, ref) => {
|
|
31
|
+
if (typeof props.size === "number") {
|
|
32
|
+
const { size, ...rest } = props;
|
|
33
|
+
props = {
|
|
34
|
+
...rest,
|
|
35
|
+
w: size,
|
|
36
|
+
h: size
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
return /* @__PURE__ */ jsx(
|
|
40
|
+
Box,
|
|
41
|
+
{
|
|
42
|
+
ref,
|
|
43
|
+
...props,
|
|
44
|
+
component: ForwardRef,
|
|
45
|
+
className: ["tiui-icon", "ExpandLine", props.className].join(" ")
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
});
|
|
49
|
+
ExpandLine.displayName = "IconExpandLine";
|
|
50
|
+
export {
|
|
51
|
+
ExpandLine as default
|
|
52
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const React = require("react");
|
|
5
|
+
const Box = require("../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.cjs");
|
|
6
|
+
const IconXProject = (props, ref) => {
|
|
7
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
width: "1em",
|
|
11
|
+
height: "1em",
|
|
12
|
+
viewBox: "0 0 22 20",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
strokeWidth: "1.5",
|
|
16
|
+
ref,
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM11.0792 5.08553C11.2644 5.45602 11.7149 5.60618 12.0854 5.42094C12.4559 5.2357 12.6061 4.7852 12.4208 4.41471L11.75 4.75012L11.0792 5.08553ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM14.2125 9.26463C14.5054 8.97173 14.5053 8.49686 14.2124 8.20397C13.9195 7.91108 13.4447 7.91109 13.1518 8.20399L13.6821 8.73431L14.2125 9.26463ZM7.28753 14.0685C6.99464 14.3614 6.99465 14.8363 7.28755 15.1292C7.58045 15.422 8.05533 15.422 8.34821 15.1291L7.81787 14.5988L7.28753 14.0685ZM8.34821 8.20399C8.05533 7.91109 7.58045 7.91108 7.28755 8.20397C6.99465 8.49686 6.99464 8.97173 7.28753 9.26463L7.81787 8.73431L8.34821 8.20399ZM13.1518 15.1291C13.4447 15.422 13.9195 15.422 14.2124 15.1292C14.5053 14.8363 14.5054 14.3614 14.2125 14.0685L13.6821 14.5988L13.1518 15.1291ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM13.6821 8.73431L13.1518 8.20399L10.2197 11.1362L10.75 11.6666L11.2803 12.1969L14.2125 9.26463L13.6821 8.73431ZM10.75 11.6666L10.2197 11.1362L7.28753 14.0685L7.81787 14.5988L8.34821 15.1291L11.2803 12.1969L10.75 11.6666ZM7.81787 8.73431L7.28753 9.26463L10.2197 12.1969L10.75 11.6666L11.2803 11.1362L8.34821 8.20399L7.81787 8.73431ZM10.75 11.6666L10.2197 12.1969L13.1518 15.1291L13.6821 14.5988L14.2125 14.0685L11.2803 11.1362L10.75 11.6666Z",
|
|
22
|
+
fill: "#383E40",
|
|
23
|
+
strokeWidth: "inherit",
|
|
24
|
+
stroke: "currentColor"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
const ForwardRef = React.forwardRef(IconXProject);
|
|
31
|
+
const XProject = React.forwardRef((props, ref) => {
|
|
32
|
+
if (typeof props.size === "number") {
|
|
33
|
+
const { size, ...rest } = props;
|
|
34
|
+
props = {
|
|
35
|
+
...rest,
|
|
36
|
+
w: size,
|
|
37
|
+
h: size
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
41
|
+
Box.Box,
|
|
42
|
+
{
|
|
43
|
+
ref,
|
|
44
|
+
...props,
|
|
45
|
+
component: ForwardRef,
|
|
46
|
+
className: ["tiui-icon", "XProject", props.className].join(" ")
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
XProject.displayName = "IconXProject";
|
|
51
|
+
exports.default = XProject;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { Box } from "../../node_modules/.pnpm/@mantine_core@7.17.8_patch_hash_3qirwkgu3wxhvd6hnr2gb24yzq_@mantine_hooks@7.17.8_react@18.3.1_e5yvlgwhmeykc75dkphi7jou6q/node_modules/@mantine/core/esm/core/Box/Box.mjs";
|
|
4
|
+
const IconXProject = (props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ jsx(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
viewBox: "0 0 22 20",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
strokeWidth: "1.5",
|
|
14
|
+
ref,
|
|
15
|
+
...props,
|
|
16
|
+
children: /* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M10.6345 2.51904L9.96364 2.85445L9.96364 2.85445L10.6345 2.51904ZM11.0792 5.08553C11.2644 5.45602 11.7149 5.60618 12.0854 5.42094C12.4559 5.2357 12.6061 4.7852 12.4208 4.41471L11.75 4.75012L11.0792 5.08553ZM9.16607 0.859432L9.41063 0.150423L9.41063 0.150423L9.16607 0.859432ZM9.91337 1.32129L10.4382 0.785472V0.785472L9.91337 1.32129ZM1.84202 0.968109L1.50153 0.299854L1.50153 0.299854L1.84202 0.968109ZM0.967987 1.84214L0.299732 1.50165L0.299732 1.50165L0.967987 1.84214ZM2.38803 18.4231L2.04754 19.0914L2.38803 18.4231ZM1.07698 17.1121L0.408726 17.4526L1.07698 17.1121ZM20.423 17.1121L21.0913 17.4526L20.423 17.1121ZM19.112 18.4231L19.4525 19.0914L19.112 18.4231ZM19.112 5.0771L19.4525 4.40885L19.112 5.0771ZM20.423 6.38815L21.0913 6.04766L20.423 6.38815ZM14.2125 9.26463C14.5054 8.97173 14.5053 8.49686 14.2124 8.20397C13.9195 7.91108 13.4447 7.91109 13.1518 8.20399L13.6821 8.73431L14.2125 9.26463ZM7.28753 14.0685C6.99464 14.3614 6.99465 14.8363 7.28755 15.1292C7.58045 15.422 8.05533 15.422 8.34821 15.1291L7.81787 14.5988L7.28753 14.0685ZM8.34821 8.20399C8.05533 7.91109 7.58045 7.91108 7.28755 8.20397C6.99465 8.49686 6.99464 8.97173 7.28753 9.26463L7.81787 8.73431L8.34821 8.20399ZM13.1518 15.1291C13.4447 15.422 13.9195 15.422 14.2124 15.1292C14.5053 14.8363 14.5054 14.3614 14.2125 14.0685L13.6821 14.5988L13.1518 15.1291ZM3.95 0.750122V1.50012H7.77229V0.750122V0.00012207H3.95V0.750122ZM10.6345 2.51904L9.96364 2.85445L11.0792 5.08553L11.75 4.75012L12.4208 4.41471L11.3053 2.18363L10.6345 2.51904ZM0.75 4.75012H1.5V3.95012H0.75H0V4.75012H0.75ZM7.77229 0.750122V1.50012C8.54458 1.50012 8.75182 1.50991 8.92152 1.56844L9.16607 0.859432L9.41063 0.150423C8.94651 -0.00966352 8.43584 0.00012207 7.77229 0.00012207V0.750122ZM10.6345 2.51904L11.3053 2.18363C11.0085 1.59014 10.7889 1.129 10.4382 0.785472L9.91337 1.32129L9.38858 1.8571C9.51682 1.9827 9.61827 2.16371 9.96364 2.85445L10.6345 2.51904ZM9.16607 0.859432L8.92152 1.56844C9.09668 1.62886 9.25621 1.72745 9.38858 1.8571L9.91337 1.32129L10.4382 0.785472C10.1469 0.500252 9.79597 0.283336 9.41063 0.150423L9.16607 0.859432ZM3.95 0.750122V0.00012207C3.40232 0.00012207 2.94646 -0.000461221 2.57533 0.0298613C2.19545 0.0608991 1.83879 0.12801 1.50153 0.299854L1.84202 0.968109L2.18251 1.63636C2.27307 1.59022 2.41035 1.54834 2.69748 1.52488C2.99336 1.50071 3.37757 1.50012 3.95 1.50012V0.750122ZM0.75 3.95012H1.5C1.5 3.37769 1.50058 2.99348 1.52476 2.6976C1.54822 2.41048 1.5901 2.27319 1.63624 2.18263L0.967987 1.84214L0.299732 1.50165C0.127888 1.83891 0.060777 2.19557 0.0297392 2.57545C-0.000583291 2.94658 0 3.40245 0 3.95012H0.75ZM1.84202 0.968109L1.50153 0.299854C0.98408 0.563506 0.563384 0.984202 0.299732 1.50165L0.967987 1.84214L1.63624 2.18263C1.75608 1.94743 1.94731 1.75621 2.18251 1.63636L1.84202 0.968109ZM0.75 4.75012V5.50012H15.95V4.75012V4.00012H0.75V4.75012ZM20.75 9.55012H20V13.9501H20.75H21.5V9.55012H20.75ZM15.95 18.7501V18.0001H5.55V18.7501V19.5001H15.95V18.7501ZM0.75 13.9501H1.5V4.75012H0.75H0V13.9501H0.75ZM5.55 18.7501V18.0001C4.69755 18.0001 4.10331 17.9995 3.64068 17.9617C3.1868 17.9247 2.92604 17.8555 2.72852 17.7549L2.38803 18.4231L2.04754 19.0914C2.49175 19.3177 2.97189 19.4121 3.51853 19.4568C4.05641 19.5007 4.7223 19.5001 5.55 19.5001V18.7501ZM0.75 13.9501H0C0 14.7778 -0.000583291 15.4437 0.0433634 15.9816C0.0880254 16.5282 0.182385 17.0084 0.408726 17.4526L1.07698 17.1121L1.74524 16.7716C1.6446 16.5741 1.57546 16.3133 1.53838 15.8594C1.50058 15.3968 1.5 14.8026 1.5 13.9501H0.75ZM2.38803 18.4231L2.72852 17.7549C2.30516 17.5392 1.96095 17.195 1.74524 16.7716L1.07698 17.1121L0.408726 17.4526C0.768251 18.1582 1.34193 18.7319 2.04754 19.0914L2.38803 18.4231ZM20.75 13.9501H20C20 14.8026 19.9994 15.3968 19.9616 15.8594C19.9245 16.3133 19.8554 16.5741 19.7548 16.7716L20.423 17.1121L21.0913 17.4526C21.3176 17.0084 21.412 16.5282 21.4566 15.9816C21.5006 15.4437 21.5 14.7778 21.5 13.9501H20.75ZM15.95 18.7501V19.5001C16.7777 19.5001 17.4436 19.5007 17.9815 19.4568C18.5281 19.4121 19.0082 19.3177 19.4525 19.0914L19.112 18.4231L18.7715 17.7549C18.574 17.8555 18.3132 17.9247 17.8593 17.9617C17.3967 17.9995 16.8025 18.0001 15.95 18.0001V18.7501ZM20.423 17.1121L19.7548 16.7716C19.539 17.195 19.1948 17.5392 18.7715 17.7549L19.112 18.4231L19.4525 19.0914C20.1581 18.7319 20.7317 18.1582 21.0913 17.4526L20.423 17.1121ZM15.95 4.75012V5.50012C16.8025 5.50012 17.3967 5.50071 17.8593 5.5385C18.3132 5.57559 18.574 5.64472 18.7715 5.74536L19.112 5.0771L19.4525 4.40885C19.0082 4.18251 18.5281 4.08815 17.9815 4.04349C17.4436 3.99954 16.7777 4.00012 15.95 4.00012V4.75012ZM20.75 9.55012H21.5C21.5 8.72242 21.5006 8.05654 21.4566 7.51865C21.412 6.97202 21.3176 6.49188 21.0913 6.04766L20.423 6.38815L19.7548 6.72864C19.8554 6.92616 19.9245 7.18693 19.9616 7.6408C19.9994 8.10343 20 8.69767 20 9.55012H20.75ZM19.112 5.0771L18.7715 5.74536C19.1948 5.96107 19.539 6.30528 19.7548 6.72864L20.423 6.38815L21.0913 6.04766C20.7317 5.34205 20.1581 4.76837 19.4525 4.40885L19.112 5.0771ZM13.6821 8.73431L13.1518 8.20399L10.2197 11.1362L10.75 11.6666L11.2803 12.1969L14.2125 9.26463L13.6821 8.73431ZM10.75 11.6666L10.2197 11.1362L7.28753 14.0685L7.81787 14.5988L8.34821 15.1291L11.2803 12.1969L10.75 11.6666ZM7.81787 8.73431L7.28753 9.26463L10.2197 12.1969L10.75 11.6666L11.2803 11.1362L8.34821 8.20399L7.81787 8.73431ZM10.75 11.6666L10.2197 12.1969L13.1518 15.1291L13.6821 14.5988L14.2125 14.0685L11.2803 11.1362L10.75 11.6666Z",
|
|
20
|
+
fill: "#383E40",
|
|
21
|
+
strokeWidth: "inherit",
|
|
22
|
+
stroke: "currentColor"
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
const ForwardRef = forwardRef(IconXProject);
|
|
29
|
+
const XProject = forwardRef((props, ref) => {
|
|
30
|
+
if (typeof props.size === "number") {
|
|
31
|
+
const { size, ...rest } = props;
|
|
32
|
+
props = {
|
|
33
|
+
...rest,
|
|
34
|
+
w: size,
|
|
35
|
+
h: size
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
return /* @__PURE__ */ jsx(
|
|
39
|
+
Box,
|
|
40
|
+
{
|
|
41
|
+
ref,
|
|
42
|
+
...props,
|
|
43
|
+
component: ForwardRef,
|
|
44
|
+
className: ["tiui-icon", "XProject", props.className].join(" ")
|
|
45
|
+
}
|
|
46
|
+
);
|
|
47
|
+
});
|
|
48
|
+
XProject.displayName = "IconXProject";
|
|
49
|
+
export {
|
|
50
|
+
XProject as default
|
|
51
|
+
};
|