@medway-ui/icons 1.0.16 → 1.0.18
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/CardLibrary.cjs +43 -0
- package/dist/components/icons/CardLibrary.d.cts +6 -0
- package/dist/components/icons/CardLibrary.d.ts +6 -0
- package/dist/components/icons/CardLibrary.js +9 -0
- package/dist/components/icons/Fire.cjs +43 -0
- package/dist/components/icons/Fire.d.cts +6 -0
- package/dist/components/icons/Fire.d.ts +6 -0
- package/dist/components/icons/Fire.js +9 -0
- package/dist/components/icons/TarguetArrow.cjs +43 -0
- package/dist/components/icons/TarguetArrow.d.cts +6 -0
- package/dist/components/icons/TarguetArrow.d.ts +6 -0
- package/dist/components/icons/TarguetArrow.js +9 -0
- package/dist/components/icons/index.cjs +9 -0
- package/dist/components/icons/index.d.cts +3 -0
- package/dist/components/icons/index.d.ts +3 -0
- package/dist/components/icons/index.js +6 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- 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 CardLibrary_exports = {};
|
|
30
|
+
__export(CardLibrary_exports, {
|
|
31
|
+
CardLibrary: () => CardLibrary
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(CardLibrary_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const CardLibrary = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M8 2H16.0033M6 6H18.005M18.3281 22C19.3557 22 20.2162 21.2217 20.319 20.1992L20.9975 12.2043C21.0541 11.6417 20.8699 11.0814 20.4906 10.662C20.1112 10.2427 19.5722 10.0034 19.0067 10.0034H5.00087C4.4354 10.0034 3.89633 10.2427 3.51699 10.662C3.13766 11.0814 2.95349 11.6417 3.01004 12.2043L3.63203 20.1992C3.73478 21.2217 4.5953 22 5.62286 22H11.9755H18.3281Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
CardLibrary.displayName = "CardLibrary";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
CardLibrary
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const CardLibrary: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { CardLibrary };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const CardLibrary: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { CardLibrary };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const CardLibrary = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M8 2H16.0033M6 6H18.005M18.3281 22C19.3557 22 20.2162 21.2217 20.319 20.1992L20.9975 12.2043C21.0541 11.6417 20.8699 11.0814 20.4906 10.662C20.1112 10.2427 19.5722 10.0034 19.0067 10.0034H5.00087C4.4354 10.0034 3.89633 10.2427 3.51699 10.662C3.13766 11.0814 2.95349 11.6417 3.01004 12.2043L3.63203 20.1992C3.73478 21.2217 4.5953 22 5.62286 22H11.9755H18.3281Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
CardLibrary.displayName = "CardLibrary";
|
|
7
|
+
export {
|
|
8
|
+
CardLibrary
|
|
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 Fire_exports = {};
|
|
30
|
+
__export(Fire_exports, {
|
|
31
|
+
Fire: () => Fire
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Fire_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const Fire = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.9277 10.89C9.87285 11.984 8.09668 11.684 7.42942 10.302L6.64258 8.666C5.27141 10.088 4.5 12.018 4.5 14.032V14.222C4.5 18.518 7.85755 22 12 22C16.1425 22 19.5 18.518 19.5 14.222C19.5 12.114 18.5801 10.12 16.9968 8.798L15.8339 7.826C14.6575 6.842 13.834 5.476 13.4985 3.948L13.0703 2C11.0627 4.082 10.1911 7.068 10.7484 9.956L10.9277 10.89Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
Fire.displayName = "Fire";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
Fire
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const Fire: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { Fire };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const Fire: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { Fire };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const Fire = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.9277 10.89C9.87285 11.984 8.09668 11.684 7.42942 10.302L6.64258 8.666C5.27141 10.088 4.5 12.018 4.5 14.032V14.222C4.5 18.518 7.85755 22 12 22C16.1425 22 19.5 18.518 19.5 14.222C19.5 12.114 18.5801 10.12 16.9968 8.798L15.8339 7.826C14.6575 6.842 13.834 5.476 13.4985 3.948L13.0703 2C11.0627 4.082 10.1911 7.068 10.7484 9.956L10.9277 10.89Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
Fire.displayName = "Fire";
|
|
7
|
+
export {
|
|
8
|
+
Fire
|
|
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 TarguetArrow_exports = {};
|
|
30
|
+
__export(TarguetArrow_exports, {
|
|
31
|
+
TarguetArrow: () => TarguetArrow
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(TarguetArrow_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const TarguetArrow = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M20.053 12.474C20.053 17.183 16.236 21 11.527 21C6.818 21 3 17.183 3 12.474C3 7.765 6.817 3.948 11.526 3.948M16.263 12.474C16.263 15.09 14.142 17.211 11.526 17.211C8.91 17.211 6.789 15.09 6.789 12.474C6.789 9.858 8.91 7.737 11.526 7.737M15.32 8.68L11.53 12.47M18.158 3L15.316 5.842V8.684H18.158L21 5.842L19.105 4.895L18.158 3Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
TarguetArrow.displayName = "TarguetArrow";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
TarguetArrow
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const TarguetArrow: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { TarguetArrow };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const TarguetArrow: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { TarguetArrow };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const TarguetArrow = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M20.053 12.474C20.053 17.183 16.236 21 11.527 21C6.818 21 3 17.183 3 12.474C3 7.765 6.817 3.948 11.526 3.948M16.263 12.474C16.263 15.09 14.142 17.211 11.526 17.211C8.91 17.211 6.789 15.09 6.789 12.474C6.789 9.858 8.91 7.737 11.526 7.737M15.32 8.68L11.53 12.47M18.158 3L15.316 5.842V8.684H18.158L21 5.842L19.105 4.895L18.158 3Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
TarguetArrow.displayName = "TarguetArrow";
|
|
7
|
+
export {
|
|
8
|
+
TarguetArrow
|
|
9
|
+
};
|
|
@@ -108,6 +108,7 @@ __export(icons_exports, {
|
|
|
108
108
|
CalendarWeek: () => import_CalendarWeek.CalendarWeek,
|
|
109
109
|
Camera: () => import_Camera.Camera,
|
|
110
110
|
CarAuto: () => import_CarAuto.CarAuto,
|
|
111
|
+
CardLibrary: () => import_CardLibrary.CardLibrary,
|
|
111
112
|
CaretCircleDown: () => import_CaretCircleDown.CaretCircleDown,
|
|
112
113
|
CaretCircleLeft: () => import_CaretCircleLeft.CaretCircleLeft,
|
|
113
114
|
CaretCircleRight: () => import_CaretCircleRight.CaretCircleRight,
|
|
@@ -226,6 +227,7 @@ __export(icons_exports, {
|
|
|
226
227
|
Files: () => import_Files.Files,
|
|
227
228
|
Filter: () => import_Filter.Filter,
|
|
228
229
|
FilterOff: () => import_FilterOff.FilterOff,
|
|
230
|
+
Fire: () => import_Fire.Fire,
|
|
229
231
|
FirstAid: () => import_FirstAid.FirstAid,
|
|
230
232
|
Flag: () => import_Flag.Flag,
|
|
231
233
|
Folder: () => import_Folder.Folder,
|
|
@@ -429,6 +431,7 @@ __export(icons_exports, {
|
|
|
429
431
|
TabletButton: () => import_TabletButton.TabletButton,
|
|
430
432
|
Tag: () => import_Tag.Tag,
|
|
431
433
|
Target: () => import_Target.Target,
|
|
434
|
+
TarguetArrow: () => import_TarguetArrow.TarguetArrow,
|
|
432
435
|
Terminal: () => import_Terminal.Terminal,
|
|
433
436
|
Text: () => import_Text.Text,
|
|
434
437
|
TextAlignCenter: () => import_TextAlignCenter.TextAlignCenter,
|
|
@@ -587,6 +590,7 @@ var import_CalendarRemove = require("./CalendarRemove");
|
|
|
587
590
|
var import_CalendarWeek = require("./CalendarWeek");
|
|
588
591
|
var import_Camera = require("./Camera");
|
|
589
592
|
var import_CarAuto = require("./CarAuto");
|
|
593
|
+
var import_CardLibrary = require("./CardLibrary");
|
|
590
594
|
var import_CaretCircleDown = require("./CaretCircleDown");
|
|
591
595
|
var import_CaretCircleLeft = require("./CaretCircleLeft");
|
|
592
596
|
var import_CaretCircleRight = require("./CaretCircleRight");
|
|
@@ -705,6 +709,7 @@ var import_FileUpload = require("./FileUpload");
|
|
|
705
709
|
var import_Files = require("./Files");
|
|
706
710
|
var import_Filter = require("./Filter");
|
|
707
711
|
var import_FilterOff = require("./FilterOff");
|
|
712
|
+
var import_Fire = require("./Fire");
|
|
708
713
|
var import_FirstAid = require("./FirstAid");
|
|
709
714
|
var import_Flag = require("./Flag");
|
|
710
715
|
var import_Folder = require("./Folder");
|
|
@@ -908,6 +913,7 @@ var import_Tablet = require("./Tablet");
|
|
|
908
913
|
var import_TabletButton = require("./TabletButton");
|
|
909
914
|
var import_Tag = require("./Tag");
|
|
910
915
|
var import_Target = require("./Target");
|
|
916
|
+
var import_TarguetArrow = require("./TarguetArrow");
|
|
911
917
|
var import_Terminal = require("./Terminal");
|
|
912
918
|
var import_Text = require("./Text");
|
|
913
919
|
var import_TextAlignCenter = require("./TextAlignCenter");
|
|
@@ -1066,6 +1072,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1066
1072
|
CalendarWeek,
|
|
1067
1073
|
Camera,
|
|
1068
1074
|
CarAuto,
|
|
1075
|
+
CardLibrary,
|
|
1069
1076
|
CaretCircleDown,
|
|
1070
1077
|
CaretCircleLeft,
|
|
1071
1078
|
CaretCircleRight,
|
|
@@ -1184,6 +1191,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1184
1191
|
Files,
|
|
1185
1192
|
Filter,
|
|
1186
1193
|
FilterOff,
|
|
1194
|
+
Fire,
|
|
1187
1195
|
FirstAid,
|
|
1188
1196
|
Flag,
|
|
1189
1197
|
Folder,
|
|
@@ -1387,6 +1395,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1387
1395
|
TabletButton,
|
|
1388
1396
|
Tag,
|
|
1389
1397
|
Target,
|
|
1398
|
+
TarguetArrow,
|
|
1390
1399
|
Terminal,
|
|
1391
1400
|
Text,
|
|
1392
1401
|
TextAlignCenter,
|
|
@@ -88,6 +88,7 @@ export { CalendarRemove } from './CalendarRemove.cjs';
|
|
|
88
88
|
export { CalendarWeek } from './CalendarWeek.cjs';
|
|
89
89
|
export { Camera } from './Camera.cjs';
|
|
90
90
|
export { CarAuto } from './CarAuto.cjs';
|
|
91
|
+
export { CardLibrary } from './CardLibrary.cjs';
|
|
91
92
|
export { CaretCircleDown } from './CaretCircleDown.cjs';
|
|
92
93
|
export { CaretCircleLeft } from './CaretCircleLeft.cjs';
|
|
93
94
|
export { CaretCircleRight } from './CaretCircleRight.cjs';
|
|
@@ -206,6 +207,7 @@ export { FileUpload } from './FileUpload.cjs';
|
|
|
206
207
|
export { Files } from './Files.cjs';
|
|
207
208
|
export { Filter } from './Filter.cjs';
|
|
208
209
|
export { FilterOff } from './FilterOff.cjs';
|
|
210
|
+
export { Fire } from './Fire.cjs';
|
|
209
211
|
export { FirstAid } from './FirstAid.cjs';
|
|
210
212
|
export { Flag } from './Flag.cjs';
|
|
211
213
|
export { Folder } from './Folder.cjs';
|
|
@@ -409,6 +411,7 @@ export { Tablet } from './Tablet.cjs';
|
|
|
409
411
|
export { TabletButton } from './TabletButton.cjs';
|
|
410
412
|
export { Tag } from './Tag.cjs';
|
|
411
413
|
export { Target } from './Target.cjs';
|
|
414
|
+
export { TarguetArrow } from './TarguetArrow.cjs';
|
|
412
415
|
export { Terminal } from './Terminal.cjs';
|
|
413
416
|
export { Text } from './Text.cjs';
|
|
414
417
|
export { TextAlignCenter } from './TextAlignCenter.cjs';
|
|
@@ -88,6 +88,7 @@ export { CalendarRemove } from './CalendarRemove.js';
|
|
|
88
88
|
export { CalendarWeek } from './CalendarWeek.js';
|
|
89
89
|
export { Camera } from './Camera.js';
|
|
90
90
|
export { CarAuto } from './CarAuto.js';
|
|
91
|
+
export { CardLibrary } from './CardLibrary.js';
|
|
91
92
|
export { CaretCircleDown } from './CaretCircleDown.js';
|
|
92
93
|
export { CaretCircleLeft } from './CaretCircleLeft.js';
|
|
93
94
|
export { CaretCircleRight } from './CaretCircleRight.js';
|
|
@@ -206,6 +207,7 @@ export { FileUpload } from './FileUpload.js';
|
|
|
206
207
|
export { Files } from './Files.js';
|
|
207
208
|
export { Filter } from './Filter.js';
|
|
208
209
|
export { FilterOff } from './FilterOff.js';
|
|
210
|
+
export { Fire } from './Fire.js';
|
|
209
211
|
export { FirstAid } from './FirstAid.js';
|
|
210
212
|
export { Flag } from './Flag.js';
|
|
211
213
|
export { Folder } from './Folder.js';
|
|
@@ -409,6 +411,7 @@ export { Tablet } from './Tablet.js';
|
|
|
409
411
|
export { TabletButton } from './TabletButton.js';
|
|
410
412
|
export { Tag } from './Tag.js';
|
|
411
413
|
export { Target } from './Target.js';
|
|
414
|
+
export { TarguetArrow } from './TarguetArrow.js';
|
|
412
415
|
export { Terminal } from './Terminal.js';
|
|
413
416
|
export { Text } from './Text.js';
|
|
414
417
|
export { TextAlignCenter } from './TextAlignCenter.js';
|
|
@@ -88,6 +88,7 @@ import { CalendarRemove } from "./CalendarRemove";
|
|
|
88
88
|
import { CalendarWeek } from "./CalendarWeek";
|
|
89
89
|
import { Camera } from "./Camera";
|
|
90
90
|
import { CarAuto } from "./CarAuto";
|
|
91
|
+
import { CardLibrary } from "./CardLibrary";
|
|
91
92
|
import { CaretCircleDown } from "./CaretCircleDown";
|
|
92
93
|
import { CaretCircleLeft } from "./CaretCircleLeft";
|
|
93
94
|
import { CaretCircleRight } from "./CaretCircleRight";
|
|
@@ -206,6 +207,7 @@ import { FileUpload } from "./FileUpload";
|
|
|
206
207
|
import { Files } from "./Files";
|
|
207
208
|
import { Filter } from "./Filter";
|
|
208
209
|
import { FilterOff } from "./FilterOff";
|
|
210
|
+
import { Fire } from "./Fire";
|
|
209
211
|
import { FirstAid } from "./FirstAid";
|
|
210
212
|
import { Flag } from "./Flag";
|
|
211
213
|
import { Folder } from "./Folder";
|
|
@@ -409,6 +411,7 @@ import { Tablet } from "./Tablet";
|
|
|
409
411
|
import { TabletButton } from "./TabletButton";
|
|
410
412
|
import { Tag } from "./Tag";
|
|
411
413
|
import { Target } from "./Target";
|
|
414
|
+
import { TarguetArrow } from "./TarguetArrow";
|
|
412
415
|
import { Terminal } from "./Terminal";
|
|
413
416
|
import { Text } from "./Text";
|
|
414
417
|
import { TextAlignCenter } from "./TextAlignCenter";
|
|
@@ -566,6 +569,7 @@ export {
|
|
|
566
569
|
CalendarWeek,
|
|
567
570
|
Camera,
|
|
568
571
|
CarAuto,
|
|
572
|
+
CardLibrary,
|
|
569
573
|
CaretCircleDown,
|
|
570
574
|
CaretCircleLeft,
|
|
571
575
|
CaretCircleRight,
|
|
@@ -684,6 +688,7 @@ export {
|
|
|
684
688
|
Files,
|
|
685
689
|
Filter,
|
|
686
690
|
FilterOff,
|
|
691
|
+
Fire,
|
|
687
692
|
FirstAid,
|
|
688
693
|
Flag,
|
|
689
694
|
Folder,
|
|
@@ -887,6 +892,7 @@ export {
|
|
|
887
892
|
TabletButton,
|
|
888
893
|
Tag,
|
|
889
894
|
Target,
|
|
895
|
+
TarguetArrow,
|
|
890
896
|
Terminal,
|
|
891
897
|
Text,
|
|
892
898
|
TextAlignCenter,
|
package/dist/index.d.cts
CHANGED
|
@@ -89,6 +89,7 @@ export { CalendarRemove } from './components/icons/CalendarRemove.cjs';
|
|
|
89
89
|
export { CalendarWeek } from './components/icons/CalendarWeek.cjs';
|
|
90
90
|
export { Camera } from './components/icons/Camera.cjs';
|
|
91
91
|
export { CarAuto } from './components/icons/CarAuto.cjs';
|
|
92
|
+
export { CardLibrary } from './components/icons/CardLibrary.cjs';
|
|
92
93
|
export { CaretCircleDown } from './components/icons/CaretCircleDown.cjs';
|
|
93
94
|
export { CaretCircleLeft } from './components/icons/CaretCircleLeft.cjs';
|
|
94
95
|
export { CaretCircleRight } from './components/icons/CaretCircleRight.cjs';
|
|
@@ -207,6 +208,7 @@ export { FileUpload } from './components/icons/FileUpload.cjs';
|
|
|
207
208
|
export { Files } from './components/icons/Files.cjs';
|
|
208
209
|
export { Filter } from './components/icons/Filter.cjs';
|
|
209
210
|
export { FilterOff } from './components/icons/FilterOff.cjs';
|
|
211
|
+
export { Fire } from './components/icons/Fire.cjs';
|
|
210
212
|
export { FirstAid } from './components/icons/FirstAid.cjs';
|
|
211
213
|
export { Flag } from './components/icons/Flag.cjs';
|
|
212
214
|
export { Folder } from './components/icons/Folder.cjs';
|
|
@@ -410,6 +412,7 @@ export { Tablet } from './components/icons/Tablet.cjs';
|
|
|
410
412
|
export { TabletButton } from './components/icons/TabletButton.cjs';
|
|
411
413
|
export { Tag } from './components/icons/Tag.cjs';
|
|
412
414
|
export { Target } from './components/icons/Target.cjs';
|
|
415
|
+
export { TarguetArrow } from './components/icons/TarguetArrow.cjs';
|
|
413
416
|
export { Terminal } from './components/icons/Terminal.cjs';
|
|
414
417
|
export { Text } from './components/icons/Text.cjs';
|
|
415
418
|
export { TextAlignCenter } from './components/icons/TextAlignCenter.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export { CalendarRemove } from './components/icons/CalendarRemove.js';
|
|
|
89
89
|
export { CalendarWeek } from './components/icons/CalendarWeek.js';
|
|
90
90
|
export { Camera } from './components/icons/Camera.js';
|
|
91
91
|
export { CarAuto } from './components/icons/CarAuto.js';
|
|
92
|
+
export { CardLibrary } from './components/icons/CardLibrary.js';
|
|
92
93
|
export { CaretCircleDown } from './components/icons/CaretCircleDown.js';
|
|
93
94
|
export { CaretCircleLeft } from './components/icons/CaretCircleLeft.js';
|
|
94
95
|
export { CaretCircleRight } from './components/icons/CaretCircleRight.js';
|
|
@@ -207,6 +208,7 @@ export { FileUpload } from './components/icons/FileUpload.js';
|
|
|
207
208
|
export { Files } from './components/icons/Files.js';
|
|
208
209
|
export { Filter } from './components/icons/Filter.js';
|
|
209
210
|
export { FilterOff } from './components/icons/FilterOff.js';
|
|
211
|
+
export { Fire } from './components/icons/Fire.js';
|
|
210
212
|
export { FirstAid } from './components/icons/FirstAid.js';
|
|
211
213
|
export { Flag } from './components/icons/Flag.js';
|
|
212
214
|
export { Folder } from './components/icons/Folder.js';
|
|
@@ -410,6 +412,7 @@ export { Tablet } from './components/icons/Tablet.js';
|
|
|
410
412
|
export { TabletButton } from './components/icons/TabletButton.js';
|
|
411
413
|
export { Tag } from './components/icons/Tag.js';
|
|
412
414
|
export { Target } from './components/icons/Target.js';
|
|
415
|
+
export { TarguetArrow } from './components/icons/TarguetArrow.js';
|
|
413
416
|
export { Terminal } from './components/icons/Terminal.js';
|
|
414
417
|
export { Text } from './components/icons/Text.js';
|
|
415
418
|
export { TextAlignCenter } from './components/icons/TextAlignCenter.js';
|
package/package.json
CHANGED