@medway-ui/icons 1.0.15 → 1.0.17
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/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/InternshipSync.cjs +43 -0
- package/dist/components/icons/InternshipSync.d.cts +6 -0
- package/dist/components/icons/InternshipSync.d.ts +6 -0
- package/dist/components/icons/InternshipSync.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 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 InternshipSync_exports = {};
|
|
30
|
+
__export(InternshipSync_exports, {
|
|
31
|
+
InternshipSync: () => InternshipSync
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(InternshipSync_exports);
|
|
34
|
+
var import_react = __toESM(require("react"), 1);
|
|
35
|
+
var import_Icon = require("../Icon");
|
|
36
|
+
const InternshipSync = (0, import_Icon.createIcon)(
|
|
37
|
+
/* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M18 7H21V3.5M2.5 8C3.2042 6.33561 4.38323 4.89324 5.90309 3.83684C7.42295 2.78044 9.22241 2.15291 11.0974 2.02456C12.9725 1.89622 14.848 2.27264 16.5101 3.11124C18.1722 3.94984 19.5544 5.21698 20.5 6.76844M6 17H3L3 20.5M21.5 16C20.7958 17.6644 19.6168 19.1068 18.0969 20.1632C16.5771 21.2196 14.7776 21.8471 12.9026 21.9754C11.0275 22.1038 9.152 21.7274 7.4899 20.8888C5.82779 20.0502 4.4456 18.783 3.5 17.2316M17 10.8333C17 10.3731 16.6269 9.99999 16.1667 9.99999H14V7.83333C14 7.37309 13.6269 7 13.1667 7H10.8333C10.3731 7 10 7.37309 10 7.83333V9.99999H7.83333C7.3731 9.99999 7 10.3731 7 10.8333V13.1667C7 13.6269 7.3731 14 7.83333 14H10V16.1667C10 16.6269 10.3731 17 10.8333 17H13.1667C13.6269 17 14 16.6269 14 16.1667V14H16.1667C16.6269 14 17 13.6269 17 13.1667V10.8333Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
38
|
+
);
|
|
39
|
+
InternshipSync.displayName = "InternshipSync";
|
|
40
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
+
0 && (module.exports = {
|
|
42
|
+
InternshipSync
|
|
43
|
+
});
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.cjs';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const InternshipSync: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { InternshipSync };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconProps } from '../Icon.js';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
|
|
4
|
+
declare const InternshipSync: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
|
|
5
|
+
|
|
6
|
+
export { InternshipSync };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createIcon } from "../Icon";
|
|
3
|
+
const InternshipSync = createIcon(
|
|
4
|
+
/* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M18 7H21V3.5M2.5 8C3.2042 6.33561 4.38323 4.89324 5.90309 3.83684C7.42295 2.78044 9.22241 2.15291 11.0974 2.02456C12.9725 1.89622 14.848 2.27264 16.5101 3.11124C18.1722 3.94984 19.5544 5.21698 20.5 6.76844M6 17H3L3 20.5M21.5 16C20.7958 17.6644 19.6168 19.1068 18.0969 20.1632C16.5771 21.2196 14.7776 21.8471 12.9026 21.9754C11.0275 22.1038 9.152 21.7274 7.4899 20.8888C5.82779 20.0502 4.4456 18.783 3.5 17.2316M17 10.8333C17 10.3731 16.6269 9.99999 16.1667 9.99999H14V7.83333C14 7.37309 13.6269 7 13.1667 7H10.8333C10.3731 7 10 7.37309 10 7.83333V9.99999H7.83333C7.3731 9.99999 7 10.3731 7 10.8333V13.1667C7 13.6269 7.3731 14 7.83333 14H10V16.1667C10 16.6269 10.3731 17 10.8333 17H13.1667C13.6269 17 14 16.6269 14 16.1667V14H16.1667C16.6269 14 17 13.6269 17 13.1667V10.8333Z", strokeLinecap: "round", strokeLinejoin: "round" }))
|
|
5
|
+
);
|
|
6
|
+
InternshipSync.displayName = "InternshipSync";
|
|
7
|
+
export {
|
|
8
|
+
InternshipSync
|
|
9
|
+
};
|
|
@@ -226,6 +226,7 @@ __export(icons_exports, {
|
|
|
226
226
|
Files: () => import_Files.Files,
|
|
227
227
|
Filter: () => import_Filter.Filter,
|
|
228
228
|
FilterOff: () => import_FilterOff.FilterOff,
|
|
229
|
+
Fire: () => import_Fire.Fire,
|
|
229
230
|
FirstAid: () => import_FirstAid.FirstAid,
|
|
230
231
|
Flag: () => import_Flag.Flag,
|
|
231
232
|
Folder: () => import_Folder.Folder,
|
|
@@ -277,6 +278,7 @@ __export(icons_exports, {
|
|
|
277
278
|
IndexPriority: () => import_IndexPriority.IndexPriority,
|
|
278
279
|
Info: () => import_Info.Info,
|
|
279
280
|
Instance: () => import_Instance.Instance,
|
|
281
|
+
InternshipSync: () => import_InternshipSync.InternshipSync,
|
|
280
282
|
Italic: () => import_Italic.Italic,
|
|
281
283
|
Keyboard: () => import_Keyboard.Keyboard,
|
|
282
284
|
Label: () => import_Label.Label,
|
|
@@ -704,6 +706,7 @@ var import_FileUpload = require("./FileUpload");
|
|
|
704
706
|
var import_Files = require("./Files");
|
|
705
707
|
var import_Filter = require("./Filter");
|
|
706
708
|
var import_FilterOff = require("./FilterOff");
|
|
709
|
+
var import_Fire = require("./Fire");
|
|
707
710
|
var import_FirstAid = require("./FirstAid");
|
|
708
711
|
var import_Flag = require("./Flag");
|
|
709
712
|
var import_Folder = require("./Folder");
|
|
@@ -755,6 +758,7 @@ var import_IndexMedium = require("./IndexMedium");
|
|
|
755
758
|
var import_IndexPriority = require("./IndexPriority");
|
|
756
759
|
var import_Info = require("./Info");
|
|
757
760
|
var import_Instance = require("./Instance");
|
|
761
|
+
var import_InternshipSync = require("./InternshipSync");
|
|
758
762
|
var import_Italic = require("./Italic");
|
|
759
763
|
var import_Keyboard = require("./Keyboard");
|
|
760
764
|
var import_Label = require("./Label");
|
|
@@ -1182,6 +1186,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1182
1186
|
Files,
|
|
1183
1187
|
Filter,
|
|
1184
1188
|
FilterOff,
|
|
1189
|
+
Fire,
|
|
1185
1190
|
FirstAid,
|
|
1186
1191
|
Flag,
|
|
1187
1192
|
Folder,
|
|
@@ -1233,6 +1238,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1233
1238
|
IndexPriority,
|
|
1234
1239
|
Info,
|
|
1235
1240
|
Instance,
|
|
1241
|
+
InternshipSync,
|
|
1236
1242
|
Italic,
|
|
1237
1243
|
Keyboard,
|
|
1238
1244
|
Label,
|
|
@@ -206,6 +206,7 @@ export { FileUpload } from './FileUpload.cjs';
|
|
|
206
206
|
export { Files } from './Files.cjs';
|
|
207
207
|
export { Filter } from './Filter.cjs';
|
|
208
208
|
export { FilterOff } from './FilterOff.cjs';
|
|
209
|
+
export { Fire } from './Fire.cjs';
|
|
209
210
|
export { FirstAid } from './FirstAid.cjs';
|
|
210
211
|
export { Flag } from './Flag.cjs';
|
|
211
212
|
export { Folder } from './Folder.cjs';
|
|
@@ -257,6 +258,7 @@ export { IndexMedium } from './IndexMedium.cjs';
|
|
|
257
258
|
export { IndexPriority } from './IndexPriority.cjs';
|
|
258
259
|
export { Info } from './Info.cjs';
|
|
259
260
|
export { Instance } from './Instance.cjs';
|
|
261
|
+
export { InternshipSync } from './InternshipSync.cjs';
|
|
260
262
|
export { Italic } from './Italic.cjs';
|
|
261
263
|
export { Keyboard } from './Keyboard.cjs';
|
|
262
264
|
export { Label } from './Label.cjs';
|
|
@@ -206,6 +206,7 @@ export { FileUpload } from './FileUpload.js';
|
|
|
206
206
|
export { Files } from './Files.js';
|
|
207
207
|
export { Filter } from './Filter.js';
|
|
208
208
|
export { FilterOff } from './FilterOff.js';
|
|
209
|
+
export { Fire } from './Fire.js';
|
|
209
210
|
export { FirstAid } from './FirstAid.js';
|
|
210
211
|
export { Flag } from './Flag.js';
|
|
211
212
|
export { Folder } from './Folder.js';
|
|
@@ -257,6 +258,7 @@ export { IndexMedium } from './IndexMedium.js';
|
|
|
257
258
|
export { IndexPriority } from './IndexPriority.js';
|
|
258
259
|
export { Info } from './Info.js';
|
|
259
260
|
export { Instance } from './Instance.js';
|
|
261
|
+
export { InternshipSync } from './InternshipSync.js';
|
|
260
262
|
export { Italic } from './Italic.js';
|
|
261
263
|
export { Keyboard } from './Keyboard.js';
|
|
262
264
|
export { Label } from './Label.js';
|
|
@@ -206,6 +206,7 @@ import { FileUpload } from "./FileUpload";
|
|
|
206
206
|
import { Files } from "./Files";
|
|
207
207
|
import { Filter } from "./Filter";
|
|
208
208
|
import { FilterOff } from "./FilterOff";
|
|
209
|
+
import { Fire } from "./Fire";
|
|
209
210
|
import { FirstAid } from "./FirstAid";
|
|
210
211
|
import { Flag } from "./Flag";
|
|
211
212
|
import { Folder } from "./Folder";
|
|
@@ -257,6 +258,7 @@ import { IndexMedium } from "./IndexMedium";
|
|
|
257
258
|
import { IndexPriority } from "./IndexPriority";
|
|
258
259
|
import { Info } from "./Info";
|
|
259
260
|
import { Instance } from "./Instance";
|
|
261
|
+
import { InternshipSync } from "./InternshipSync";
|
|
260
262
|
import { Italic } from "./Italic";
|
|
261
263
|
import { Keyboard } from "./Keyboard";
|
|
262
264
|
import { Label } from "./Label";
|
|
@@ -683,6 +685,7 @@ export {
|
|
|
683
685
|
Files,
|
|
684
686
|
Filter,
|
|
685
687
|
FilterOff,
|
|
688
|
+
Fire,
|
|
686
689
|
FirstAid,
|
|
687
690
|
Flag,
|
|
688
691
|
Folder,
|
|
@@ -734,6 +737,7 @@ export {
|
|
|
734
737
|
IndexPriority,
|
|
735
738
|
Info,
|
|
736
739
|
Instance,
|
|
740
|
+
InternshipSync,
|
|
737
741
|
Italic,
|
|
738
742
|
Keyboard,
|
|
739
743
|
Label,
|
package/dist/index.d.cts
CHANGED
|
@@ -207,6 +207,7 @@ export { FileUpload } from './components/icons/FileUpload.cjs';
|
|
|
207
207
|
export { Files } from './components/icons/Files.cjs';
|
|
208
208
|
export { Filter } from './components/icons/Filter.cjs';
|
|
209
209
|
export { FilterOff } from './components/icons/FilterOff.cjs';
|
|
210
|
+
export { Fire } from './components/icons/Fire.cjs';
|
|
210
211
|
export { FirstAid } from './components/icons/FirstAid.cjs';
|
|
211
212
|
export { Flag } from './components/icons/Flag.cjs';
|
|
212
213
|
export { Folder } from './components/icons/Folder.cjs';
|
|
@@ -258,6 +259,7 @@ export { IndexMedium } from './components/icons/IndexMedium.cjs';
|
|
|
258
259
|
export { IndexPriority } from './components/icons/IndexPriority.cjs';
|
|
259
260
|
export { Info } from './components/icons/Info.cjs';
|
|
260
261
|
export { Instance } from './components/icons/Instance.cjs';
|
|
262
|
+
export { InternshipSync } from './components/icons/InternshipSync.cjs';
|
|
261
263
|
export { Italic } from './components/icons/Italic.cjs';
|
|
262
264
|
export { Keyboard } from './components/icons/Keyboard.cjs';
|
|
263
265
|
export { Label } from './components/icons/Label.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -207,6 +207,7 @@ export { FileUpload } from './components/icons/FileUpload.js';
|
|
|
207
207
|
export { Files } from './components/icons/Files.js';
|
|
208
208
|
export { Filter } from './components/icons/Filter.js';
|
|
209
209
|
export { FilterOff } from './components/icons/FilterOff.js';
|
|
210
|
+
export { Fire } from './components/icons/Fire.js';
|
|
210
211
|
export { FirstAid } from './components/icons/FirstAid.js';
|
|
211
212
|
export { Flag } from './components/icons/Flag.js';
|
|
212
213
|
export { Folder } from './components/icons/Folder.js';
|
|
@@ -258,6 +259,7 @@ export { IndexMedium } from './components/icons/IndexMedium.js';
|
|
|
258
259
|
export { IndexPriority } from './components/icons/IndexPriority.js';
|
|
259
260
|
export { Info } from './components/icons/Info.js';
|
|
260
261
|
export { Instance } from './components/icons/Instance.js';
|
|
262
|
+
export { InternshipSync } from './components/icons/InternshipSync.js';
|
|
261
263
|
export { Italic } from './components/icons/Italic.js';
|
|
262
264
|
export { Keyboard } from './components/icons/Keyboard.js';
|
|
263
265
|
export { Label } from './components/icons/Label.js';
|
package/package.json
CHANGED