@medway-ui/icons 1.0.16 → 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/index.cjs +3 -0
- package/dist/components/icons/index.d.cts +1 -0
- package/dist/components/icons/index.d.ts +1 -0
- package/dist/components/icons/index.js +2 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -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
|
+
};
|
|
@@ -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,
|
|
@@ -705,6 +706,7 @@ var import_FileUpload = require("./FileUpload");
|
|
|
705
706
|
var import_Files = require("./Files");
|
|
706
707
|
var import_Filter = require("./Filter");
|
|
707
708
|
var import_FilterOff = require("./FilterOff");
|
|
709
|
+
var import_Fire = require("./Fire");
|
|
708
710
|
var import_FirstAid = require("./FirstAid");
|
|
709
711
|
var import_Flag = require("./Flag");
|
|
710
712
|
var import_Folder = require("./Folder");
|
|
@@ -1184,6 +1186,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1184
1186
|
Files,
|
|
1185
1187
|
Filter,
|
|
1186
1188
|
FilterOff,
|
|
1189
|
+
Fire,
|
|
1187
1190
|
FirstAid,
|
|
1188
1191
|
Flag,
|
|
1189
1192
|
Folder,
|
|
@@ -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';
|
|
@@ -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';
|
|
@@ -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";
|
|
@@ -684,6 +685,7 @@ export {
|
|
|
684
685
|
Files,
|
|
685
686
|
Filter,
|
|
686
687
|
FilterOff,
|
|
688
|
+
Fire,
|
|
687
689
|
FirstAid,
|
|
688
690
|
Flag,
|
|
689
691
|
Folder,
|
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';
|
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';
|
package/package.json
CHANGED