main page
This commit is contained in:
19
node_modules/react-icons/lib/cjs/iconBase.d.ts
generated
vendored
Normal file
19
node_modules/react-icons/lib/cjs/iconBase.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from "react";
|
||||
export interface IconTree {
|
||||
tag: string;
|
||||
attr: {
|
||||
[key: string]: string;
|
||||
};
|
||||
child: IconTree[];
|
||||
}
|
||||
export declare function GenIcon(data: IconTree): (props: IconBaseProps) => React.JSX.Element;
|
||||
export interface IconBaseProps extends React.SVGAttributes<SVGElement> {
|
||||
children?: React.ReactNode;
|
||||
size?: string | number;
|
||||
color?: string;
|
||||
title?: string;
|
||||
}
|
||||
export type IconType = (props: IconBaseProps) => JSX.Element;
|
||||
export declare function IconBase(props: IconBaseProps & {
|
||||
attr?: Record<string, string>;
|
||||
}): JSX.Element;
|
||||
54
node_modules/react-icons/lib/cjs/iconBase.js
generated
vendored
Normal file
54
node_modules/react-icons/lib/cjs/iconBase.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
"use strict";
|
||||
var __assign = (this && this.__assign) || function () {
|
||||
__assign = Object.assign || function(t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
||||
t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
return __assign.apply(this, arguments);
|
||||
};
|
||||
var __rest = (this && this.__rest) || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.IconBase = exports.GenIcon = void 0;
|
||||
var React = require("react");
|
||||
var iconContext_1 = require("./iconContext");
|
||||
function Tree2Element(tree) {
|
||||
return (tree &&
|
||||
tree.map(function (node, i) {
|
||||
return React.createElement(node.tag, __assign({ key: i }, node.attr), Tree2Element(node.child));
|
||||
}));
|
||||
}
|
||||
function GenIcon(data) {
|
||||
// eslint-disable-next-line react/display-name
|
||||
return function (props) { return (React.createElement(IconBase, __assign({ attr: __assign({}, data.attr) }, props), Tree2Element(data.child))); };
|
||||
}
|
||||
exports.GenIcon = GenIcon;
|
||||
function IconBase(props) {
|
||||
var elem = function (conf) {
|
||||
var attr = props.attr, size = props.size, title = props.title, svgProps = __rest(props, ["attr", "size", "title"]);
|
||||
var computedSize = size || conf.size || "1em";
|
||||
var className;
|
||||
if (conf.className)
|
||||
className = conf.className;
|
||||
if (props.className)
|
||||
className = (className ? className + " " : "") + props.className;
|
||||
return (React.createElement("svg", __assign({ stroke: "currentColor", fill: "currentColor", strokeWidth: "0" }, conf.attr, attr, svgProps, { className: className, style: __assign(__assign({ color: props.color || conf.color }, conf.style), props.style), height: computedSize, width: computedSize, xmlns: "http://www.w3.org/2000/svg" }),
|
||||
title && React.createElement("title", null, title),
|
||||
props.children));
|
||||
};
|
||||
return iconContext_1.IconContext !== undefined ? (React.createElement(iconContext_1.IconContext.Consumer, null, function (conf) { return elem(conf); })) : (elem(iconContext_1.DefaultContext));
|
||||
}
|
||||
exports.IconBase = IconBase;
|
||||
10
node_modules/react-icons/lib/cjs/iconContext.d.ts
generated
vendored
Normal file
10
node_modules/react-icons/lib/cjs/iconContext.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import * as React from "react";
|
||||
export interface IconContext {
|
||||
color?: string;
|
||||
size?: string;
|
||||
className?: string;
|
||||
style?: React.CSSProperties;
|
||||
attr?: React.SVGAttributes<SVGElement>;
|
||||
}
|
||||
export declare const DefaultContext: IconContext;
|
||||
export declare const IconContext: React.Context<IconContext>;
|
||||
12
node_modules/react-icons/lib/cjs/iconContext.js
generated
vendored
Normal file
12
node_modules/react-icons/lib/cjs/iconContext.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.IconContext = exports.DefaultContext = void 0;
|
||||
var React = require("react");
|
||||
exports.DefaultContext = {
|
||||
color: undefined,
|
||||
size: undefined,
|
||||
className: undefined,
|
||||
style: undefined,
|
||||
attr: undefined,
|
||||
};
|
||||
exports.IconContext = React.createContext && React.createContext(exports.DefaultContext);
|
||||
8
node_modules/react-icons/lib/cjs/iconsManifest.d.ts
generated
vendored
Normal file
8
node_modules/react-icons/lib/cjs/iconsManifest.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export interface IconManifestType {
|
||||
id: string;
|
||||
name: string;
|
||||
projectUrl: string;
|
||||
license: string;
|
||||
licenseUrl: string;
|
||||
}
|
||||
export declare const IconsManifest: IconManifestType[];
|
||||
219
node_modules/react-icons/lib/cjs/iconsManifest.js
generated
vendored
Normal file
219
node_modules/react-icons/lib/cjs/iconsManifest.js
generated
vendored
Normal file
@@ -0,0 +1,219 @@
|
||||
module.exports.IconsManifest = [
|
||||
{
|
||||
"id": "ci",
|
||||
"name": "Circum Icons",
|
||||
"projectUrl": "https://circumicons.com/",
|
||||
"license": "MPL-2.0 license",
|
||||
"licenseUrl": "https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "fa",
|
||||
"name": "Font Awesome 5",
|
||||
"projectUrl": "https://fontawesome.com/",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "fa6",
|
||||
"name": "Font Awesome 6",
|
||||
"projectUrl": "https://fontawesome.com/",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "io",
|
||||
"name": "Ionicons 4",
|
||||
"projectUrl": "https://ionicons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/ionic-team/ionicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "io5",
|
||||
"name": "Ionicons 5",
|
||||
"projectUrl": "https://ionicons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/ionic-team/ionicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "md",
|
||||
"name": "Material Design icons",
|
||||
"projectUrl": "http://google.github.io/material-design-icons/",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "https://github.com/google/material-design-icons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "ti",
|
||||
"name": "Typicons",
|
||||
"projectUrl": "http://s-ings.com/typicons/",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by-sa/3.0/"
|
||||
},
|
||||
{
|
||||
"id": "go",
|
||||
"name": "Github Octicons icons",
|
||||
"projectUrl": "https://octicons.github.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/primer/octicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "fi",
|
||||
"name": "Feather",
|
||||
"projectUrl": "https://feathericons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/feathericons/feather/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "lu",
|
||||
"name": "Lucide",
|
||||
"projectUrl": "https://lucide.dev/",
|
||||
"license": "ISC",
|
||||
"licenseUrl": "https://github.com/lucide-icons/lucide/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "gi",
|
||||
"name": "Game Icons",
|
||||
"projectUrl": "https://game-icons.net/",
|
||||
"license": "CC BY 3.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/3.0/"
|
||||
},
|
||||
{
|
||||
"id": "wi",
|
||||
"name": "Weather Icons",
|
||||
"projectUrl": "https://erikflowers.github.io/weather-icons/",
|
||||
"license": "SIL OFL 1.1",
|
||||
"licenseUrl": "http://scripts.sil.org/OFL"
|
||||
},
|
||||
{
|
||||
"id": "di",
|
||||
"name": "Devicons",
|
||||
"projectUrl": "https://vorillaz.github.io/devicons/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "ai",
|
||||
"name": "Ant Design Icons",
|
||||
"projectUrl": "https://github.com/ant-design/ant-design-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "bs",
|
||||
"name": "Bootstrap Icons",
|
||||
"projectUrl": "https://github.com/twbs/icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "ri",
|
||||
"name": "Remix Icon",
|
||||
"projectUrl": "https://github.com/Remix-Design/RemixIcon",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "http://www.apache.org/licenses/"
|
||||
},
|
||||
{
|
||||
"id": "fc",
|
||||
"name": "Flat Color Icons",
|
||||
"projectUrl": "https://github.com/icons8/flat-color-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "gr",
|
||||
"name": "Grommet-Icons",
|
||||
"projectUrl": "https://github.com/grommet/grommet-icons",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "http://www.apache.org/licenses/"
|
||||
},
|
||||
{
|
||||
"id": "hi",
|
||||
"name": "Heroicons",
|
||||
"projectUrl": "https://github.com/tailwindlabs/heroicons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "hi2",
|
||||
"name": "Heroicons 2",
|
||||
"projectUrl": "https://github.com/tailwindlabs/heroicons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "si",
|
||||
"name": "Simple Icons",
|
||||
"projectUrl": "https://simpleicons.org/",
|
||||
"license": "CC0 1.0 Universal",
|
||||
"licenseUrl": "https://creativecommons.org/publicdomain/zero/1.0/"
|
||||
},
|
||||
{
|
||||
"id": "sl",
|
||||
"name": "Simple Line Icons",
|
||||
"projectUrl": "https://thesabbir.github.io/simple-line-icons/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "im",
|
||||
"name": "IcoMoon Free",
|
||||
"projectUrl": "https://github.com/Keyamoon/IcoMoon-Free",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://github.com/Keyamoon/IcoMoon-Free/blob/master/License.txt"
|
||||
},
|
||||
{
|
||||
"id": "bi",
|
||||
"name": "BoxIcons",
|
||||
"projectUrl": "https://github.com/atisawd/boxicons",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://github.com/atisawd/boxicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "cg",
|
||||
"name": "css.gg",
|
||||
"projectUrl": "https://github.com/astrit/css.gg",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "vsc",
|
||||
"name": "VS Code Icons",
|
||||
"projectUrl": "https://github.com/microsoft/vscode-codicons",
|
||||
"license": "CC BY 4.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "tb",
|
||||
"name": "Tabler Icons",
|
||||
"projectUrl": "https://github.com/tabler/tabler-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "tfi",
|
||||
"name": "Themify Icons",
|
||||
"projectUrl": "https://github.com/lykmapipo/themify-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "rx",
|
||||
"name": "Radix Icons",
|
||||
"projectUrl": "https://icons.radix-ui.com",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/radix-ui/icons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "pi",
|
||||
"name": "Phosphor Icons",
|
||||
"projectUrl": "https://github.com/phosphor-icons/core",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/phosphor-icons/core/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "lia",
|
||||
"name": "Icons8 Line Awesome",
|
||||
"projectUrl": "https://icons8.com/line-awesome",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/icons8/line-awesome/blob/master/LICENSE.md"
|
||||
}
|
||||
]
|
||||
3
node_modules/react-icons/lib/cjs/index.d.ts
generated
vendored
Normal file
3
node_modules/react-icons/lib/cjs/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "./iconsManifest";
|
||||
export * from "./iconBase";
|
||||
export * from "./iconContext";
|
||||
19
node_modules/react-icons/lib/cjs/index.js
generated
vendored
Normal file
19
node_modules/react-icons/lib/cjs/index.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./iconsManifest"), exports);
|
||||
__exportStar(require("./iconBase"), exports);
|
||||
__exportStar(require("./iconContext"), exports);
|
||||
19
node_modules/react-icons/lib/esm/iconBase.d.ts
generated
vendored
Normal file
19
node_modules/react-icons/lib/esm/iconBase.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from "react";
|
||||
export interface IconTree {
|
||||
tag: string;
|
||||
attr: {
|
||||
[key: string]: string;
|
||||
};
|
||||
child: IconTree[];
|
||||
}
|
||||
export declare function GenIcon(data: IconTree): (props: IconBaseProps) => React.JSX.Element;
|
||||
export interface IconBaseProps extends React.SVGAttributes<SVGElement> {
|
||||
children?: React.ReactNode;
|
||||
size?: string | number;
|
||||
color?: string;
|
||||
title?: string;
|
||||
}
|
||||
export type IconType = (props: IconBaseProps) => JSX.Element;
|
||||
export declare function IconBase(props: IconBaseProps & {
|
||||
attr?: Record<string, string>;
|
||||
}): JSX.Element;
|
||||
63
node_modules/react-icons/lib/esm/iconBase.js
generated
vendored
Normal file
63
node_modules/react-icons/lib/esm/iconBase.js
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
var __assign = this && this.__assign || function () {
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
return __assign.apply(this, arguments);
|
||||
};
|
||||
var __rest = this && this.__rest || function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
import React from "react";
|
||||
import { IconContext, DefaultContext } from "./iconContext";
|
||||
function Tree2Element(tree) {
|
||||
return tree && tree.map(function (node, i) {
|
||||
return React.createElement(node.tag, __assign({
|
||||
key: i
|
||||
}, node.attr), Tree2Element(node.child));
|
||||
});
|
||||
}
|
||||
export function GenIcon(data) {
|
||||
// eslint-disable-next-line react/display-name
|
||||
return function (props) {
|
||||
return React.createElement(IconBase, __assign({
|
||||
attr: __assign({}, data.attr)
|
||||
}, props), Tree2Element(data.child));
|
||||
};
|
||||
}
|
||||
export function IconBase(props) {
|
||||
var elem = function (conf) {
|
||||
var attr = props.attr,
|
||||
size = props.size,
|
||||
title = props.title,
|
||||
svgProps = __rest(props, ["attr", "size", "title"]);
|
||||
var computedSize = size || conf.size || "1em";
|
||||
var className;
|
||||
if (conf.className) className = conf.className;
|
||||
if (props.className) className = (className ? className + " " : "") + props.className;
|
||||
return React.createElement("svg", __assign({
|
||||
stroke: "currentColor",
|
||||
fill: "currentColor",
|
||||
strokeWidth: "0"
|
||||
}, conf.attr, attr, svgProps, {
|
||||
className: className,
|
||||
style: __assign(__assign({
|
||||
color: props.color || conf.color
|
||||
}, conf.style), props.style),
|
||||
height: computedSize,
|
||||
width: computedSize,
|
||||
xmlns: "http://www.w3.org/2000/svg"
|
||||
}), title && React.createElement("title", null, title), props.children);
|
||||
};
|
||||
return IconContext !== undefined ? React.createElement(IconContext.Consumer, null, function (conf) {
|
||||
return elem(conf);
|
||||
}) : elem(DefaultContext);
|
||||
}
|
||||
10
node_modules/react-icons/lib/esm/iconContext.d.ts
generated
vendored
Normal file
10
node_modules/react-icons/lib/esm/iconContext.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import * as React from "react";
|
||||
export interface IconContext {
|
||||
color?: string;
|
||||
size?: string;
|
||||
className?: string;
|
||||
style?: React.CSSProperties;
|
||||
attr?: React.SVGAttributes<SVGElement>;
|
||||
}
|
||||
export declare const DefaultContext: IconContext;
|
||||
export declare const IconContext: React.Context<IconContext>;
|
||||
9
node_modules/react-icons/lib/esm/iconContext.js
generated
vendored
Normal file
9
node_modules/react-icons/lib/esm/iconContext.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
export var DefaultContext = {
|
||||
color: undefined,
|
||||
size: undefined,
|
||||
className: undefined,
|
||||
style: undefined,
|
||||
attr: undefined
|
||||
};
|
||||
export var IconContext = React.createContext && React.createContext(DefaultContext);
|
||||
8
node_modules/react-icons/lib/esm/iconsManifest.d.ts
generated
vendored
Normal file
8
node_modules/react-icons/lib/esm/iconsManifest.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export interface IconManifestType {
|
||||
id: string;
|
||||
name: string;
|
||||
projectUrl: string;
|
||||
license: string;
|
||||
licenseUrl: string;
|
||||
}
|
||||
export declare const IconsManifest: IconManifestType[];
|
||||
219
node_modules/react-icons/lib/esm/iconsManifest.js
generated
vendored
Normal file
219
node_modules/react-icons/lib/esm/iconsManifest.js
generated
vendored
Normal file
@@ -0,0 +1,219 @@
|
||||
export var IconsManifest = [
|
||||
{
|
||||
"id": "ci",
|
||||
"name": "Circum Icons",
|
||||
"projectUrl": "https://circumicons.com/",
|
||||
"license": "MPL-2.0 license",
|
||||
"licenseUrl": "https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "fa",
|
||||
"name": "Font Awesome 5",
|
||||
"projectUrl": "https://fontawesome.com/",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "fa6",
|
||||
"name": "Font Awesome 6",
|
||||
"projectUrl": "https://fontawesome.com/",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "io",
|
||||
"name": "Ionicons 4",
|
||||
"projectUrl": "https://ionicons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/ionic-team/ionicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "io5",
|
||||
"name": "Ionicons 5",
|
||||
"projectUrl": "https://ionicons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/ionic-team/ionicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "md",
|
||||
"name": "Material Design icons",
|
||||
"projectUrl": "http://google.github.io/material-design-icons/",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "https://github.com/google/material-design-icons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "ti",
|
||||
"name": "Typicons",
|
||||
"projectUrl": "http://s-ings.com/typicons/",
|
||||
"license": "CC BY-SA 3.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by-sa/3.0/"
|
||||
},
|
||||
{
|
||||
"id": "go",
|
||||
"name": "Github Octicons icons",
|
||||
"projectUrl": "https://octicons.github.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/primer/octicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "fi",
|
||||
"name": "Feather",
|
||||
"projectUrl": "https://feathericons.com/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/feathericons/feather/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "lu",
|
||||
"name": "Lucide",
|
||||
"projectUrl": "https://lucide.dev/",
|
||||
"license": "ISC",
|
||||
"licenseUrl": "https://github.com/lucide-icons/lucide/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "gi",
|
||||
"name": "Game Icons",
|
||||
"projectUrl": "https://game-icons.net/",
|
||||
"license": "CC BY 3.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/3.0/"
|
||||
},
|
||||
{
|
||||
"id": "wi",
|
||||
"name": "Weather Icons",
|
||||
"projectUrl": "https://erikflowers.github.io/weather-icons/",
|
||||
"license": "SIL OFL 1.1",
|
||||
"licenseUrl": "http://scripts.sil.org/OFL"
|
||||
},
|
||||
{
|
||||
"id": "di",
|
||||
"name": "Devicons",
|
||||
"projectUrl": "https://vorillaz.github.io/devicons/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "ai",
|
||||
"name": "Ant Design Icons",
|
||||
"projectUrl": "https://github.com/ant-design/ant-design-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "bs",
|
||||
"name": "Bootstrap Icons",
|
||||
"projectUrl": "https://github.com/twbs/icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "ri",
|
||||
"name": "Remix Icon",
|
||||
"projectUrl": "https://github.com/Remix-Design/RemixIcon",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "http://www.apache.org/licenses/"
|
||||
},
|
||||
{
|
||||
"id": "fc",
|
||||
"name": "Flat Color Icons",
|
||||
"projectUrl": "https://github.com/icons8/flat-color-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "gr",
|
||||
"name": "Grommet-Icons",
|
||||
"projectUrl": "https://github.com/grommet/grommet-icons",
|
||||
"license": "Apache License Version 2.0",
|
||||
"licenseUrl": "http://www.apache.org/licenses/"
|
||||
},
|
||||
{
|
||||
"id": "hi",
|
||||
"name": "Heroicons",
|
||||
"projectUrl": "https://github.com/tailwindlabs/heroicons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "hi2",
|
||||
"name": "Heroicons 2",
|
||||
"projectUrl": "https://github.com/tailwindlabs/heroicons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "si",
|
||||
"name": "Simple Icons",
|
||||
"projectUrl": "https://simpleicons.org/",
|
||||
"license": "CC0 1.0 Universal",
|
||||
"licenseUrl": "https://creativecommons.org/publicdomain/zero/1.0/"
|
||||
},
|
||||
{
|
||||
"id": "sl",
|
||||
"name": "Simple Line Icons",
|
||||
"projectUrl": "https://thesabbir.github.io/simple-line-icons/",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "im",
|
||||
"name": "IcoMoon Free",
|
||||
"projectUrl": "https://github.com/Keyamoon/IcoMoon-Free",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://github.com/Keyamoon/IcoMoon-Free/blob/master/License.txt"
|
||||
},
|
||||
{
|
||||
"id": "bi",
|
||||
"name": "BoxIcons",
|
||||
"projectUrl": "https://github.com/atisawd/boxicons",
|
||||
"license": "CC BY 4.0 License",
|
||||
"licenseUrl": "https://github.com/atisawd/boxicons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "cg",
|
||||
"name": "css.gg",
|
||||
"projectUrl": "https://github.com/astrit/css.gg",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "vsc",
|
||||
"name": "VS Code Icons",
|
||||
"projectUrl": "https://github.com/microsoft/vscode-codicons",
|
||||
"license": "CC BY 4.0",
|
||||
"licenseUrl": "https://creativecommons.org/licenses/by/4.0/"
|
||||
},
|
||||
{
|
||||
"id": "tb",
|
||||
"name": "Tabler Icons",
|
||||
"projectUrl": "https://github.com/tabler/tabler-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://opensource.org/licenses/MIT"
|
||||
},
|
||||
{
|
||||
"id": "tfi",
|
||||
"name": "Themify Icons",
|
||||
"projectUrl": "https://github.com/lykmapipo/themify-icons",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "rx",
|
||||
"name": "Radix Icons",
|
||||
"projectUrl": "https://icons.radix-ui.com",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/radix-ui/icons/blob/master/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "pi",
|
||||
"name": "Phosphor Icons",
|
||||
"projectUrl": "https://github.com/phosphor-icons/core",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/phosphor-icons/core/blob/main/LICENSE"
|
||||
},
|
||||
{
|
||||
"id": "lia",
|
||||
"name": "Icons8 Line Awesome",
|
||||
"projectUrl": "https://icons8.com/line-awesome",
|
||||
"license": "MIT",
|
||||
"licenseUrl": "https://github.com/icons8/line-awesome/blob/master/LICENSE.md"
|
||||
}
|
||||
]
|
||||
3
node_modules/react-icons/lib/esm/index.d.ts
generated
vendored
Normal file
3
node_modules/react-icons/lib/esm/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "./iconsManifest";
|
||||
export * from "./iconBase";
|
||||
export * from "./iconContext";
|
||||
3
node_modules/react-icons/lib/esm/index.js
generated
vendored
Normal file
3
node_modules/react-icons/lib/esm/index.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from "./iconsManifest";
|
||||
export * from "./iconBase";
|
||||
export * from "./iconContext";
|
||||
4
node_modules/react-icons/lib/package.json
generated
vendored
Normal file
4
node_modules/react-icons/lib/package.json
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./esm/index.js"
|
||||
}
|
||||
Reference in New Issue
Block a user