@medway-ui/icons 1.0.17 → 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/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 +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/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 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,
|
|
@@ -430,6 +431,7 @@ __export(icons_exports, {
|
|
|
430
431
|
TabletButton: () => import_TabletButton.TabletButton,
|
|
431
432
|
Tag: () => import_Tag.Tag,
|
|
432
433
|
Target: () => import_Target.Target,
|
|
434
|
+
TarguetArrow: () => import_TarguetArrow.TarguetArrow,
|
|
433
435
|
Terminal: () => import_Terminal.Terminal,
|
|
434
436
|
Text: () => import_Text.Text,
|
|
435
437
|
TextAlignCenter: () => import_TextAlignCenter.TextAlignCenter,
|
|
@@ -588,6 +590,7 @@ var import_CalendarRemove = require("./CalendarRemove");
|
|
|
588
590
|
var import_CalendarWeek = require("./CalendarWeek");
|
|
589
591
|
var import_Camera = require("./Camera");
|
|
590
592
|
var import_CarAuto = require("./CarAuto");
|
|
593
|
+
var import_CardLibrary = require("./CardLibrary");
|
|
591
594
|
var import_CaretCircleDown = require("./CaretCircleDown");
|
|
592
595
|
var import_CaretCircleLeft = require("./CaretCircleLeft");
|
|
593
596
|
var import_CaretCircleRight = require("./CaretCircleRight");
|
|
@@ -910,6 +913,7 @@ var import_Tablet = require("./Tablet");
|
|
|
910
913
|
var import_TabletButton = require("./TabletButton");
|
|
911
914
|
var import_Tag = require("./Tag");
|
|
912
915
|
var import_Target = require("./Target");
|
|
916
|
+
var import_TarguetArrow = require("./TarguetArrow");
|
|
913
917
|
var import_Terminal = require("./Terminal");
|
|
914
918
|
var import_Text = require("./Text");
|
|
915
919
|
var import_TextAlignCenter = require("./TextAlignCenter");
|
|
@@ -1068,6 +1072,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1068
1072
|
CalendarWeek,
|
|
1069
1073
|
Camera,
|
|
1070
1074
|
CarAuto,
|
|
1075
|
+
CardLibrary,
|
|
1071
1076
|
CaretCircleDown,
|
|
1072
1077
|
CaretCircleLeft,
|
|
1073
1078
|
CaretCircleRight,
|
|
@@ -1390,6 +1395,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1390
1395
|
TabletButton,
|
|
1391
1396
|
Tag,
|
|
1392
1397
|
Target,
|
|
1398
|
+
TarguetArrow,
|
|
1393
1399
|
Terminal,
|
|
1394
1400
|
Text,
|
|
1395
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';
|
|
@@ -410,6 +411,7 @@ export { Tablet } from './Tablet.cjs';
|
|
|
410
411
|
export { TabletButton } from './TabletButton.cjs';
|
|
411
412
|
export { Tag } from './Tag.cjs';
|
|
412
413
|
export { Target } from './Target.cjs';
|
|
414
|
+
export { TarguetArrow } from './TarguetArrow.cjs';
|
|
413
415
|
export { Terminal } from './Terminal.cjs';
|
|
414
416
|
export { Text } from './Text.cjs';
|
|
415
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';
|
|
@@ -410,6 +411,7 @@ export { Tablet } from './Tablet.js';
|
|
|
410
411
|
export { TabletButton } from './TabletButton.js';
|
|
411
412
|
export { Tag } from './Tag.js';
|
|
412
413
|
export { Target } from './Target.js';
|
|
414
|
+
export { TarguetArrow } from './TarguetArrow.js';
|
|
413
415
|
export { Terminal } from './Terminal.js';
|
|
414
416
|
export { Text } from './Text.js';
|
|
415
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";
|
|
@@ -410,6 +411,7 @@ import { Tablet } from "./Tablet";
|
|
|
410
411
|
import { TabletButton } from "./TabletButton";
|
|
411
412
|
import { Tag } from "./Tag";
|
|
412
413
|
import { Target } from "./Target";
|
|
414
|
+
import { TarguetArrow } from "./TarguetArrow";
|
|
413
415
|
import { Terminal } from "./Terminal";
|
|
414
416
|
import { Text } from "./Text";
|
|
415
417
|
import { TextAlignCenter } from "./TextAlignCenter";
|
|
@@ -567,6 +569,7 @@ export {
|
|
|
567
569
|
CalendarWeek,
|
|
568
570
|
Camera,
|
|
569
571
|
CarAuto,
|
|
572
|
+
CardLibrary,
|
|
570
573
|
CaretCircleDown,
|
|
571
574
|
CaretCircleLeft,
|
|
572
575
|
CaretCircleRight,
|
|
@@ -889,6 +892,7 @@ export {
|
|
|
889
892
|
TabletButton,
|
|
890
893
|
Tag,
|
|
891
894
|
Target,
|
|
895
|
+
TarguetArrow,
|
|
892
896
|
Terminal,
|
|
893
897
|
Text,
|
|
894
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';
|
|
@@ -411,6 +412,7 @@ export { Tablet } from './components/icons/Tablet.cjs';
|
|
|
411
412
|
export { TabletButton } from './components/icons/TabletButton.cjs';
|
|
412
413
|
export { Tag } from './components/icons/Tag.cjs';
|
|
413
414
|
export { Target } from './components/icons/Target.cjs';
|
|
415
|
+
export { TarguetArrow } from './components/icons/TarguetArrow.cjs';
|
|
414
416
|
export { Terminal } from './components/icons/Terminal.cjs';
|
|
415
417
|
export { Text } from './components/icons/Text.cjs';
|
|
416
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';
|
|
@@ -411,6 +412,7 @@ export { Tablet } from './components/icons/Tablet.js';
|
|
|
411
412
|
export { TabletButton } from './components/icons/TabletButton.js';
|
|
412
413
|
export { Tag } from './components/icons/Tag.js';
|
|
413
414
|
export { Target } from './components/icons/Target.js';
|
|
415
|
+
export { TarguetArrow } from './components/icons/TarguetArrow.js';
|
|
414
416
|
export { Terminal } from './components/icons/Terminal.js';
|
|
415
417
|
export { Text } from './components/icons/Text.js';
|
|
416
418
|
export { TextAlignCenter } from './components/icons/TextAlignCenter.js';
|
package/package.json
CHANGED