@medway-ui/icons 1.9.0 → 1.10.0
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/dist/components/icons/ContentUpdate.cjs +43 -0
- package/dist/components/icons/ContentUpdate.d.cts +6 -0
- package/dist/components/icons/ContentUpdate.d.ts +6 -0
- package/dist/components/icons/ContentUpdate.js +9 -0
- package/dist/components/icons/SearchError.cjs +43 -0
- package/dist/components/icons/SearchError.d.cts +6 -0
- package/dist/components/icons/SearchError.d.ts +6 -0
- package/dist/components/icons/SearchError.js +9 -0
- package/dist/components/icons/index.cjs +6 -0
- package/dist/components/icons/index.d.cts +2 -0
- package/dist/components/icons/index.d.ts +2 -0
- package/dist/components/icons/index.js +4 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/native/components/icons/ContentUpdate.cjs +45 -0
- package/native/components/icons/ContentUpdate.d.cts +9 -0
- package/native/components/icons/ContentUpdate.d.ts +9 -0
- package/native/components/icons/ContentUpdate.js +11 -0
- package/native/components/icons/SearchError.cjs +45 -0
- package/native/components/icons/SearchError.d.cts +9 -0
- package/native/components/icons/SearchError.d.ts +9 -0
- package/native/components/icons/SearchError.js +11 -0
- package/native/components/icons/index.cjs +6 -0
- package/native/components/icons/index.d.cts +2 -0
- package/native/components/icons/index.d.ts +2 -0
- package/native/components/icons/index.js +4 -0
- package/native/index.d.cts +13 -1
- package/native/index.d.ts +13 -1
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var ContentUpdate_exports = {};
|
|
30
|
+
__export(ContentUpdate_exports, {
|
|
31
|
+
ContentUpdate: () => ContentUpdate
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(ContentUpdate_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const ContentUpdate = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M11 16H7M17 16H15M7 12H11.5M7 8H9.5M21 13V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6C3 4.34315 4.34315 3 6 3H9M20.0021 7C20.0021 8.65754 18.6584 10.0013 17.0008 10.0013H15M16.5006 8.50012L15 10.0013L16.5006 11.5016M13 6.50137C13 4.84383 14.3437 3.50012 16.0013 3.50012H18.0021M16.5015 5.00151L18.0021 3.50012L16.5015 2", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
ContentUpdate.displayName = "ContentUpdate";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
ContentUpdate
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const ContentUpdate: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { ContentUpdate };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const ContentUpdate: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { ContentUpdate };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const ContentUpdate = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M11 16H7M17 16H15M7 12H11.5M7 8H9.5M21 13V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6C3 4.34315 4.34315 3 6 3H9M20.0021 7C20.0021 8.65754 18.6584 10.0013 17.0008 10.0013H15M16.5006 8.50012L15 10.0013L16.5006 11.5016M13 6.50137C13 4.84383 14.3437 3.50012 16.0013 3.50012H18.0021M16.5015 5.00151L18.0021 3.50012L16.5015 2", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
ContentUpdate.displayName = "ContentUpdate";
|
|
7
|
+
export {
|
|
8
|
+
ContentUpdate
|
|
9
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var SearchError_exports = {};
|
|
30
|
+
__export(SearchError_exports, {
|
|
31
|
+
SearchError: () => SearchError
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(SearchError_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const SearchError = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M15 15L21 21M7.99999 8.00001L10 10M10 10L12 12M10 10L12 8.00001M10 10L7.99999 12M10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 13.866 13.866 17 10 17Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
SearchError.displayName = "SearchError";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
SearchError
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const SearchError: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { SearchError };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const SearchError: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { SearchError };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const SearchError = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M15 15L21 21M7.99999 8.00001L10 10M10 10L12 12M10 10L12 8.00001M10 10L7.99999 12M10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 13.866 13.866 17 10 17Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
SearchError.displayName = "SearchError";
|
|
7
|
+
export {
|
|
8
|
+
SearchError
|
|
9
|
+
};
|
|
@@ -193,6 +193,7 @@ __export(icons_exports, {
|
|
|
193
193
|
Command: () => import_Command.Command,
|
|
194
194
|
Compass: () => import_Compass.Compass,
|
|
195
195
|
Compass02: () => import_Compass02.Compass02,
|
|
196
|
+
ContentUpdate: () => import_ContentUpdate.ContentUpdate,
|
|
196
197
|
Cookie: () => import_Cookie.Cookie,
|
|
197
198
|
Copy: () => import_Copy.Copy,
|
|
198
199
|
CreditCard: () => import_CreditCard.CreditCard,
|
|
@@ -411,6 +412,7 @@ __export(icons_exports, {
|
|
|
411
412
|
Ruler: () => import_Ruler.Ruler,
|
|
412
413
|
Save: () => import_Save.Save,
|
|
413
414
|
SearchAi: () => import_SearchAi.SearchAi,
|
|
415
|
+
SearchError: () => import_SearchError.SearchError,
|
|
414
416
|
SearchMagnifyingGlass: () => import_SearchMagnifyingGlass.SearchMagnifyingGlass,
|
|
415
417
|
SelectMultiple: () => import_SelectMultiple.SelectMultiple,
|
|
416
418
|
Settings: () => import_Settings.Settings,
|
|
@@ -717,6 +719,7 @@ var import_CombineCells = require("./CombineCells");
|
|
|
717
719
|
var import_Command = require("./Command");
|
|
718
720
|
var import_Compass = require("./Compass");
|
|
719
721
|
var import_Compass02 = require("./Compass02");
|
|
722
|
+
var import_ContentUpdate = require("./ContentUpdate");
|
|
720
723
|
var import_Cookie = require("./Cookie");
|
|
721
724
|
var import_Copy = require("./Copy");
|
|
722
725
|
var import_CreditCard = require("./CreditCard");
|
|
@@ -935,6 +938,7 @@ var import_Rows = require("./Rows");
|
|
|
935
938
|
var import_Ruler = require("./Ruler");
|
|
936
939
|
var import_Save = require("./Save");
|
|
937
940
|
var import_SearchAi = require("./SearchAi");
|
|
941
|
+
var import_SearchError = require("./SearchError");
|
|
938
942
|
var import_SearchMagnifyingGlass = require("./SearchMagnifyingGlass");
|
|
939
943
|
var import_SelectMultiple = require("./SelectMultiple");
|
|
940
944
|
var import_Settings = require("./Settings");
|
|
@@ -1241,6 +1245,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1241
1245
|
Command,
|
|
1242
1246
|
Compass,
|
|
1243
1247
|
Compass02,
|
|
1248
|
+
ContentUpdate,
|
|
1244
1249
|
Cookie,
|
|
1245
1250
|
Copy,
|
|
1246
1251
|
CreditCard,
|
|
@@ -1459,6 +1464,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1459
1464
|
Ruler,
|
|
1460
1465
|
Save,
|
|
1461
1466
|
SearchAi,
|
|
1467
|
+
SearchError,
|
|
1462
1468
|
SearchMagnifyingGlass,
|
|
1463
1469
|
SelectMultiple,
|
|
1464
1470
|
Settings,
|
|
@@ -173,6 +173,7 @@ export { CombineCells } from './CombineCells.cjs';
|
|
|
173
173
|
export { Command } from './Command.cjs';
|
|
174
174
|
export { Compass } from './Compass.cjs';
|
|
175
175
|
export { Compass02 } from './Compass02.cjs';
|
|
176
|
+
export { ContentUpdate } from './ContentUpdate.cjs';
|
|
176
177
|
export { Cookie } from './Cookie.cjs';
|
|
177
178
|
export { Copy } from './Copy.cjs';
|
|
178
179
|
export { CreditCard } from './CreditCard.cjs';
|
|
@@ -391,6 +392,7 @@ export { Rows } from './Rows.cjs';
|
|
|
391
392
|
export { Ruler } from './Ruler.cjs';
|
|
392
393
|
export { Save } from './Save.cjs';
|
|
393
394
|
export { SearchAi } from './SearchAi.cjs';
|
|
395
|
+
export { SearchError } from './SearchError.cjs';
|
|
394
396
|
export { SearchMagnifyingGlass } from './SearchMagnifyingGlass.cjs';
|
|
395
397
|
export { SelectMultiple } from './SelectMultiple.cjs';
|
|
396
398
|
export { Settings } from './Settings.cjs';
|
|
@@ -173,6 +173,7 @@ export { CombineCells } from './CombineCells.js';
|
|
|
173
173
|
export { Command } from './Command.js';
|
|
174
174
|
export { Compass } from './Compass.js';
|
|
175
175
|
export { Compass02 } from './Compass02.js';
|
|
176
|
+
export { ContentUpdate } from './ContentUpdate.js';
|
|
176
177
|
export { Cookie } from './Cookie.js';
|
|
177
178
|
export { Copy } from './Copy.js';
|
|
178
179
|
export { CreditCard } from './CreditCard.js';
|
|
@@ -391,6 +392,7 @@ export { Rows } from './Rows.js';
|
|
|
391
392
|
export { Ruler } from './Ruler.js';
|
|
392
393
|
export { Save } from './Save.js';
|
|
393
394
|
export { SearchAi } from './SearchAi.js';
|
|
395
|
+
export { SearchError } from './SearchError.js';
|
|
394
396
|
export { SearchMagnifyingGlass } from './SearchMagnifyingGlass.js';
|
|
395
397
|
export { SelectMultiple } from './SelectMultiple.js';
|
|
396
398
|
export { Settings } from './Settings.js';
|
|
@@ -173,6 +173,7 @@ import { CombineCells } from "./CombineCells";
|
|
|
173
173
|
import { Command } from "./Command";
|
|
174
174
|
import { Compass } from "./Compass";
|
|
175
175
|
import { Compass02 } from "./Compass02";
|
|
176
|
+
import { ContentUpdate } from "./ContentUpdate";
|
|
176
177
|
import { Cookie } from "./Cookie";
|
|
177
178
|
import { Copy } from "./Copy";
|
|
178
179
|
import { CreditCard } from "./CreditCard";
|
|
@@ -391,6 +392,7 @@ import { Rows } from "./Rows";
|
|
|
391
392
|
import { Ruler } from "./Ruler";
|
|
392
393
|
import { Save } from "./Save";
|
|
393
394
|
import { SearchAi } from "./SearchAi";
|
|
395
|
+
import { SearchError } from "./SearchError";
|
|
394
396
|
import { SearchMagnifyingGlass } from "./SearchMagnifyingGlass";
|
|
395
397
|
import { SelectMultiple } from "./SelectMultiple";
|
|
396
398
|
import { Settings } from "./Settings";
|
|
@@ -696,6 +698,7 @@ export {
|
|
|
696
698
|
Command,
|
|
697
699
|
Compass,
|
|
698
700
|
Compass02,
|
|
701
|
+
ContentUpdate,
|
|
699
702
|
Cookie,
|
|
700
703
|
Copy,
|
|
701
704
|
CreditCard,
|
|
@@ -914,6 +917,7 @@ export {
|
|
|
914
917
|
Ruler,
|
|
915
918
|
Save,
|
|
916
919
|
SearchAi,
|
|
920
|
+
SearchError,
|
|
917
921
|
SearchMagnifyingGlass,
|
|
918
922
|
SelectMultiple,
|
|
919
923
|
Settings,
|
package/dist/index.d.cts
CHANGED
|
@@ -174,6 +174,7 @@ export { CombineCells } from './components/icons/CombineCells.cjs';
|
|
|
174
174
|
export { Command } from './components/icons/Command.cjs';
|
|
175
175
|
export { Compass } from './components/icons/Compass.cjs';
|
|
176
176
|
export { Compass02 } from './components/icons/Compass02.cjs';
|
|
177
|
+
export { ContentUpdate } from './components/icons/ContentUpdate.cjs';
|
|
177
178
|
export { Cookie } from './components/icons/Cookie.cjs';
|
|
178
179
|
export { Copy } from './components/icons/Copy.cjs';
|
|
179
180
|
export { CreditCard } from './components/icons/CreditCard.cjs';
|
|
@@ -392,6 +393,7 @@ export { Rows } from './components/icons/Rows.cjs';
|
|
|
392
393
|
export { Ruler } from './components/icons/Ruler.cjs';
|
|
393
394
|
export { Save } from './components/icons/Save.cjs';
|
|
394
395
|
export { SearchAi } from './components/icons/SearchAi.cjs';
|
|
396
|
+
export { SearchError } from './components/icons/SearchError.cjs';
|
|
395
397
|
export { SearchMagnifyingGlass } from './components/icons/SearchMagnifyingGlass.cjs';
|
|
396
398
|
export { SelectMultiple } from './components/icons/SelectMultiple.cjs';
|
|
397
399
|
export { Settings } from './components/icons/Settings.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export { CombineCells } from './components/icons/CombineCells.js';
|
|
|
174
174
|
export { Command } from './components/icons/Command.js';
|
|
175
175
|
export { Compass } from './components/icons/Compass.js';
|
|
176
176
|
export { Compass02 } from './components/icons/Compass02.js';
|
|
177
|
+
export { ContentUpdate } from './components/icons/ContentUpdate.js';
|
|
177
178
|
export { Cookie } from './components/icons/Cookie.js';
|
|
178
179
|
export { Copy } from './components/icons/Copy.js';
|
|
179
180
|
export { CreditCard } from './components/icons/CreditCard.js';
|
|
@@ -392,6 +393,7 @@ export { Rows } from './components/icons/Rows.js';
|
|
|
392
393
|
export { Ruler } from './components/icons/Ruler.js';
|
|
393
394
|
export { Save } from './components/icons/Save.js';
|
|
394
395
|
export { SearchAi } from './components/icons/SearchAi.js';
|
|
396
|
+
export { SearchError } from './components/icons/SearchError.js';
|
|
395
397
|
export { SearchMagnifyingGlass } from './components/icons/SearchMagnifyingGlass.js';
|
|
396
398
|
export { SelectMultiple } from './components/icons/SelectMultiple.js';
|
|
397
399
|
export { Settings } from './components/icons/Settings.js';
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var ContentUpdate_exports = {};
|
|
30
|
+
__export(ContentUpdate_exports, {
|
|
31
|
+
ContentUpdate: () => ContentUpdate
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(ContentUpdate_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_react_native_svg = require("react-native-svg");
|
|
36
|
+
const ContentUpdate = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
|
|
37
|
+
return /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
38
|
+
<path d="M11 16H7M17 16H15M7 12H11.5M7 8H9.5M21 13V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6C3 4.34315 4.34315 3 6 3H9M20.0021 7C20.0021 8.65754 18.6584 10.0013 17.0008 10.0013H15M16.5006 8.50012L15 10.0013L16.5006 11.5016M13 6.50137C13 4.84383 14.3437 3.50012 16.0013 3.50012H18.0021M16.5015 5.00151L18.0021 3.50012L16.5015 2" stroke="${color}" stroke-width="${strokeWidth}" stroke-linecap="round" stroke-linejoin="round"/>
|
|
39
|
+
</svg>
|
|
40
|
+
`, height, width, color, strokeWidth });
|
|
41
|
+
};
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
ContentUpdate
|
|
45
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SvgProps } from 'react-native-svg';
|
|
2
|
+
|
|
3
|
+
type ContentUpdateProps = {
|
|
4
|
+
color: string;
|
|
5
|
+
strokeWidth?: number;
|
|
6
|
+
} & SvgProps;
|
|
7
|
+
declare const ContentUpdate: ({ height, width, color, strokeWidth }: ContentUpdateProps) => JSX.Element;
|
|
8
|
+
|
|
9
|
+
export { ContentUpdate };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SvgProps } from 'react-native-svg';
|
|
2
|
+
|
|
3
|
+
type ContentUpdateProps = {
|
|
4
|
+
color: string;
|
|
5
|
+
strokeWidth?: number;
|
|
6
|
+
} & SvgProps;
|
|
7
|
+
declare const ContentUpdate: ({ height, width, color, strokeWidth }: ContentUpdateProps) => JSX.Element;
|
|
8
|
+
|
|
9
|
+
export { ContentUpdate };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SvgXml } from "react-native-svg";
|
|
3
|
+
const ContentUpdate = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
|
|
4
|
+
return /* @__PURE__ */ React.createElement(SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
+
<path d="M11 16H7M17 16H15M7 12H11.5M7 8H9.5M21 13V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V6C3 4.34315 4.34315 3 6 3H9M20.0021 7C20.0021 8.65754 18.6584 10.0013 17.0008 10.0013H15M16.5006 8.50012L15 10.0013L16.5006 11.5016M13 6.50137C13 4.84383 14.3437 3.50012 16.0013 3.50012H18.0021M16.5015 5.00151L18.0021 3.50012L16.5015 2" stroke="${color}" stroke-width="${strokeWidth}" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
`, height, width, color, strokeWidth });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
ContentUpdate
|
|
11
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var SearchError_exports = {};
|
|
30
|
+
__export(SearchError_exports, {
|
|
31
|
+
SearchError: () => SearchError
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(SearchError_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_react_native_svg = require("react-native-svg");
|
|
36
|
+
const SearchError = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
|
|
37
|
+
return /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
38
|
+
<path d="M15 15L21 21M7.99999 8.00001L10 10M10 10L12 12M10 10L12 8.00001M10 10L7.99999 12M10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 13.866 13.866 17 10 17Z" stroke="${color}" stroke-width="${strokeWidth}" stroke-linecap="round" stroke-linejoin="round"/>
|
|
39
|
+
</svg>
|
|
40
|
+
`, height, width, color, strokeWidth });
|
|
41
|
+
};
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
SearchError
|
|
45
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { SvgXml } from "react-native-svg";
|
|
3
|
+
const SearchError = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
|
|
4
|
+
return /* @__PURE__ */ React.createElement(SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
5
|
+
<path d="M15 15L21 21M7.99999 8.00001L10 10M10 10L12 12M10 10L12 8.00001M10 10L7.99999 12M10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 13.866 13.866 17 10 17Z" stroke="${color}" stroke-width="${strokeWidth}" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
`, height, width, color, strokeWidth });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
SearchError
|
|
11
|
+
};
|
|
@@ -193,6 +193,7 @@ __export(icons_exports, {
|
|
|
193
193
|
Command: () => import_Command.Command,
|
|
194
194
|
Compass: () => import_Compass.Compass,
|
|
195
195
|
Compass02: () => import_Compass02.Compass02,
|
|
196
|
+
ContentUpdate: () => import_ContentUpdate.ContentUpdate,
|
|
196
197
|
Cookie: () => import_Cookie.Cookie,
|
|
197
198
|
Copy: () => import_Copy.Copy,
|
|
198
199
|
CreditCard: () => import_CreditCard.CreditCard,
|
|
@@ -411,6 +412,7 @@ __export(icons_exports, {
|
|
|
411
412
|
Ruler: () => import_Ruler.Ruler,
|
|
412
413
|
Save: () => import_Save.Save,
|
|
413
414
|
SearchAi: () => import_SearchAi.SearchAi,
|
|
415
|
+
SearchError: () => import_SearchError.SearchError,
|
|
414
416
|
SearchMagnifyingGlass: () => import_SearchMagnifyingGlass.SearchMagnifyingGlass,
|
|
415
417
|
SelectMultiple: () => import_SelectMultiple.SelectMultiple,
|
|
416
418
|
Settings: () => import_Settings.Settings,
|
|
@@ -717,6 +719,7 @@ var import_CombineCells = require("./CombineCells");
|
|
|
717
719
|
var import_Command = require("./Command");
|
|
718
720
|
var import_Compass = require("./Compass");
|
|
719
721
|
var import_Compass02 = require("./Compass02");
|
|
722
|
+
var import_ContentUpdate = require("./ContentUpdate");
|
|
720
723
|
var import_Cookie = require("./Cookie");
|
|
721
724
|
var import_Copy = require("./Copy");
|
|
722
725
|
var import_CreditCard = require("./CreditCard");
|
|
@@ -935,6 +938,7 @@ var import_Rows = require("./Rows");
|
|
|
935
938
|
var import_Ruler = require("./Ruler");
|
|
936
939
|
var import_Save = require("./Save");
|
|
937
940
|
var import_SearchAi = require("./SearchAi");
|
|
941
|
+
var import_SearchError = require("./SearchError");
|
|
938
942
|
var import_SearchMagnifyingGlass = require("./SearchMagnifyingGlass");
|
|
939
943
|
var import_SelectMultiple = require("./SelectMultiple");
|
|
940
944
|
var import_Settings = require("./Settings");
|
|
@@ -1241,6 +1245,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1241
1245
|
Command,
|
|
1242
1246
|
Compass,
|
|
1243
1247
|
Compass02,
|
|
1248
|
+
ContentUpdate,
|
|
1244
1249
|
Cookie,
|
|
1245
1250
|
Copy,
|
|
1246
1251
|
CreditCard,
|
|
@@ -1459,6 +1464,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1459
1464
|
Ruler,
|
|
1460
1465
|
Save,
|
|
1461
1466
|
SearchAi,
|
|
1467
|
+
SearchError,
|
|
1462
1468
|
SearchMagnifyingGlass,
|
|
1463
1469
|
SelectMultiple,
|
|
1464
1470
|
Settings,
|
|
@@ -173,6 +173,7 @@ export { CombineCells } from './CombineCells.cjs';
|
|
|
173
173
|
export { Command } from './Command.cjs';
|
|
174
174
|
export { Compass } from './Compass.cjs';
|
|
175
175
|
export { Compass02 } from './Compass02.cjs';
|
|
176
|
+
export { ContentUpdate } from './ContentUpdate.cjs';
|
|
176
177
|
export { Cookie } from './Cookie.cjs';
|
|
177
178
|
export { Copy } from './Copy.cjs';
|
|
178
179
|
export { CreditCard } from './CreditCard.cjs';
|
|
@@ -391,6 +392,7 @@ export { Rows } from './Rows.cjs';
|
|
|
391
392
|
export { Ruler } from './Ruler.cjs';
|
|
392
393
|
export { Save } from './Save.cjs';
|
|
393
394
|
export { SearchAi } from './SearchAi.cjs';
|
|
395
|
+
export { SearchError } from './SearchError.cjs';
|
|
394
396
|
export { SearchMagnifyingGlass } from './SearchMagnifyingGlass.cjs';
|
|
395
397
|
export { SelectMultiple } from './SelectMultiple.cjs';
|
|
396
398
|
export { Settings } from './Settings.cjs';
|
|
@@ -173,6 +173,7 @@ export { CombineCells } from './CombineCells.js';
|
|
|
173
173
|
export { Command } from './Command.js';
|
|
174
174
|
export { Compass } from './Compass.js';
|
|
175
175
|
export { Compass02 } from './Compass02.js';
|
|
176
|
+
export { ContentUpdate } from './ContentUpdate.js';
|
|
176
177
|
export { Cookie } from './Cookie.js';
|
|
177
178
|
export { Copy } from './Copy.js';
|
|
178
179
|
export { CreditCard } from './CreditCard.js';
|
|
@@ -391,6 +392,7 @@ export { Rows } from './Rows.js';
|
|
|
391
392
|
export { Ruler } from './Ruler.js';
|
|
392
393
|
export { Save } from './Save.js';
|
|
393
394
|
export { SearchAi } from './SearchAi.js';
|
|
395
|
+
export { SearchError } from './SearchError.js';
|
|
394
396
|
export { SearchMagnifyingGlass } from './SearchMagnifyingGlass.js';
|
|
395
397
|
export { SelectMultiple } from './SelectMultiple.js';
|
|
396
398
|
export { Settings } from './Settings.js';
|
|
@@ -173,6 +173,7 @@ import { CombineCells } from "./CombineCells";
|
|
|
173
173
|
import { Command } from "./Command";
|
|
174
174
|
import { Compass } from "./Compass";
|
|
175
175
|
import { Compass02 } from "./Compass02";
|
|
176
|
+
import { ContentUpdate } from "./ContentUpdate";
|
|
176
177
|
import { Cookie } from "./Cookie";
|
|
177
178
|
import { Copy } from "./Copy";
|
|
178
179
|
import { CreditCard } from "./CreditCard";
|
|
@@ -391,6 +392,7 @@ import { Rows } from "./Rows";
|
|
|
391
392
|
import { Ruler } from "./Ruler";
|
|
392
393
|
import { Save } from "./Save";
|
|
393
394
|
import { SearchAi } from "./SearchAi";
|
|
395
|
+
import { SearchError } from "./SearchError";
|
|
394
396
|
import { SearchMagnifyingGlass } from "./SearchMagnifyingGlass";
|
|
395
397
|
import { SelectMultiple } from "./SelectMultiple";
|
|
396
398
|
import { Settings } from "./Settings";
|
|
@@ -696,6 +698,7 @@ export {
|
|
|
696
698
|
Command,
|
|
697
699
|
Compass,
|
|
698
700
|
Compass02,
|
|
701
|
+
ContentUpdate,
|
|
699
702
|
Cookie,
|
|
700
703
|
Copy,
|
|
701
704
|
CreditCard,
|
|
@@ -914,6 +917,7 @@ export {
|
|
|
914
917
|
Ruler,
|
|
915
918
|
Save,
|
|
916
919
|
SearchAi,
|
|
920
|
+
SearchError,
|
|
917
921
|
SearchMagnifyingGlass,
|
|
918
922
|
SelectMultiple,
|
|
919
923
|
Settings,
|
package/native/index.d.cts
CHANGED
|
@@ -1050,6 +1050,12 @@ type Compass02Props = {
|
|
|
1050
1050
|
} & SvgProps;
|
|
1051
1051
|
declare const Compass02: ({ height, width, color, strokeWidth }: Compass02Props) => JSX.Element;
|
|
1052
1052
|
|
|
1053
|
+
type ContentUpdateProps = {
|
|
1054
|
+
color: string;
|
|
1055
|
+
strokeWidth?: number;
|
|
1056
|
+
} & SvgProps;
|
|
1057
|
+
declare const ContentUpdate: ({ height, width, color, strokeWidth }: ContentUpdateProps) => JSX.Element;
|
|
1058
|
+
|
|
1053
1059
|
type CookieProps = {
|
|
1054
1060
|
color: string;
|
|
1055
1061
|
strokeWidth?: number;
|
|
@@ -2358,6 +2364,12 @@ type SearchAiProps = {
|
|
|
2358
2364
|
} & SvgProps;
|
|
2359
2365
|
declare const SearchAi: ({ height, width, color, strokeWidth }: SearchAiProps) => JSX.Element;
|
|
2360
2366
|
|
|
2367
|
+
type SearchErrorProps = {
|
|
2368
|
+
color: string;
|
|
2369
|
+
strokeWidth?: number;
|
|
2370
|
+
} & SvgProps;
|
|
2371
|
+
declare const SearchError: ({ height, width, color, strokeWidth }: SearchErrorProps) => JSX.Element;
|
|
2372
|
+
|
|
2361
2373
|
type SearchMagnifyingGlassProps = {
|
|
2362
2374
|
color: string;
|
|
2363
2375
|
strokeWidth?: number;
|
|
@@ -3132,4 +3144,4 @@ type WindowTerminalProps = {
|
|
|
3132
3144
|
} & SvgProps;
|
|
3133
3145
|
declare const WindowTerminal: ({ height, width, color, strokeWidth }: WindowTerminalProps) => JSX.Element;
|
|
3134
3146
|
|
|
3135
|
-
export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, AgendaAi, Airplay, Alarm, AlmostAi, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, AttentionAi, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEdit, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, Card, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, ClockProgress, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudSync, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Compass02, Cookie, Copy, CreditCard, CreditCard2, CriticalAi, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Dermatology, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DrawingPencil, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventEdit, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, FlashcardAi, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, GoalAi, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, MedicineStudy, MentalDisorder, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, PlaylistAdd, PlaylistCheck, Postpone, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Radiology, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, SuperGoalAi, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, TwoCards, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
|
|
3147
|
+
export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, AgendaAi, Airplay, Alarm, AlmostAi, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, AttentionAi, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEdit, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, Card, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, ClockProgress, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudSync, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Compass02, ContentUpdate, Cookie, Copy, CreditCard, CreditCard2, CriticalAi, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Dermatology, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DrawingPencil, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventEdit, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, FlashcardAi, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, GoalAi, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, MedicineStudy, MentalDisorder, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, PlaylistAdd, PlaylistCheck, Postpone, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Radiology, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchError, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, SuperGoalAi, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, TwoCards, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
|
package/native/index.d.ts
CHANGED
|
@@ -1050,6 +1050,12 @@ type Compass02Props = {
|
|
|
1050
1050
|
} & SvgProps;
|
|
1051
1051
|
declare const Compass02: ({ height, width, color, strokeWidth }: Compass02Props) => JSX.Element;
|
|
1052
1052
|
|
|
1053
|
+
type ContentUpdateProps = {
|
|
1054
|
+
color: string;
|
|
1055
|
+
strokeWidth?: number;
|
|
1056
|
+
} & SvgProps;
|
|
1057
|
+
declare const ContentUpdate: ({ height, width, color, strokeWidth }: ContentUpdateProps) => JSX.Element;
|
|
1058
|
+
|
|
1053
1059
|
type CookieProps = {
|
|
1054
1060
|
color: string;
|
|
1055
1061
|
strokeWidth?: number;
|
|
@@ -2358,6 +2364,12 @@ type SearchAiProps = {
|
|
|
2358
2364
|
} & SvgProps;
|
|
2359
2365
|
declare const SearchAi: ({ height, width, color, strokeWidth }: SearchAiProps) => JSX.Element;
|
|
2360
2366
|
|
|
2367
|
+
type SearchErrorProps = {
|
|
2368
|
+
color: string;
|
|
2369
|
+
strokeWidth?: number;
|
|
2370
|
+
} & SvgProps;
|
|
2371
|
+
declare const SearchError: ({ height, width, color, strokeWidth }: SearchErrorProps) => JSX.Element;
|
|
2372
|
+
|
|
2361
2373
|
type SearchMagnifyingGlassProps = {
|
|
2362
2374
|
color: string;
|
|
2363
2375
|
strokeWidth?: number;
|
|
@@ -3132,4 +3144,4 @@ type WindowTerminalProps = {
|
|
|
3132
3144
|
} & SvgProps;
|
|
3133
3145
|
declare const WindowTerminal: ({ height, width, color, strokeWidth }: WindowTerminalProps) => JSX.Element;
|
|
3134
3146
|
|
|
3135
|
-
export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, AgendaAi, Airplay, Alarm, AlmostAi, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, AttentionAi, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEdit, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, Card, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, ClockProgress, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudSync, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Compass02, Cookie, Copy, CreditCard, CreditCard2, CriticalAi, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Dermatology, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DrawingPencil, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventEdit, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, FlashcardAi, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, GoalAi, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, MedicineStudy, MentalDisorder, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, PlaylistAdd, PlaylistCheck, Postpone, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Radiology, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, SuperGoalAi, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, TwoCards, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
|
|
3147
|
+
export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, AgendaAi, Airplay, Alarm, AlmostAi, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, AttentionAi, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEdit, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, Card, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, ClockProgress, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudSync, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Compass02, ContentUpdate, Cookie, Copy, CreditCard, CreditCard2, CriticalAi, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Dermatology, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DrawingPencil, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventEdit, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, FlashcardAi, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, GoalAi, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, MedicineStudy, MentalDisorder, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, PlaylistAdd, PlaylistCheck, Postpone, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Radiology, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchError, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, SuperGoalAi, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, TwoCards, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
|
package/package.json
CHANGED