Initial commit

This commit is contained in:
Ammaar Reshi
2025-01-04 14:06:53 +00:00
parent 7082408604
commit d6025af146
23760 changed files with 3299690 additions and 0 deletions

19
node_modules/react-icons/lib/iconBase.d.ts generated vendored Normal file
View 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;

57
node_modules/react-icons/lib/iconBase.js generated vendored Normal file
View File

@ -0,0 +1,57 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.GenIcon = GenIcon;
exports.IconBase = IconBase;
var _react = _interopRequireDefault(require("react"));
var _iconContext = require("./iconContext");
var _excluded = ["attr", "size", "title"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function Tree2Element(tree) {
return tree && tree.map((node, i) => /*#__PURE__*/_react.default.createElement(node.tag, _objectSpread({
key: i
}, node.attr), Tree2Element(node.child)));
}
function GenIcon(data) {
return props => /*#__PURE__*/_react.default.createElement(IconBase, _extends({
attr: _objectSpread({}, data.attr)
}, props), Tree2Element(data.child));
}
function IconBase(props) {
var elem = conf => {
var {
attr,
size,
title
} = props,
svgProps = _objectWithoutProperties(props, _excluded);
var computedSize = size || conf.size || "1em";
var className;
if (conf.className) className = conf.className;
if (props.className) className = (className ? className + " " : "") + props.className;
return /*#__PURE__*/_react.default.createElement("svg", _extends({
stroke: "currentColor",
fill: "currentColor",
strokeWidth: "0"
}, conf.attr, attr, svgProps, {
className: className,
style: _objectSpread(_objectSpread({
color: props.color || conf.color
}, conf.style), props.style),
height: computedSize,
width: computedSize,
xmlns: "http://www.w3.org/2000/svg"
}), title && /*#__PURE__*/_react.default.createElement("title", null, title), props.children);
};
return _iconContext.IconContext !== undefined ? /*#__PURE__*/_react.default.createElement(_iconContext.IconContext.Consumer, null, conf => elem(conf)) : elem(_iconContext.DefaultContext);
}

49
node_modules/react-icons/lib/iconBase.mjs generated vendored Normal file
View File

@ -0,0 +1,49 @@
var _excluded = ["attr", "size", "title"];
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
import React from "react";
import { IconContext, DefaultContext } from "./iconContext.mjs";
function Tree2Element(tree) {
return tree && tree.map((node, i) => /*#__PURE__*/React.createElement(node.tag, _objectSpread({
key: i
}, node.attr), Tree2Element(node.child)));
}
export function GenIcon(data) {
return props => /*#__PURE__*/React.createElement(IconBase, _extends({
attr: _objectSpread({}, data.attr)
}, props), Tree2Element(data.child));
}
export function IconBase(props) {
var elem = conf => {
var {
attr,
size,
title
} = props,
svgProps = _objectWithoutProperties(props, _excluded);
var computedSize = size || conf.size || "1em";
var className;
if (conf.className) className = conf.className;
if (props.className) className = (className ? className + " " : "") + props.className;
return /*#__PURE__*/React.createElement("svg", _extends({
stroke: "currentColor",
fill: "currentColor",
strokeWidth: "0"
}, conf.attr, attr, svgProps, {
className: className,
style: _objectSpread(_objectSpread({
color: props.color || conf.color
}, conf.style), props.style),
height: computedSize,
width: computedSize,
xmlns: "http://www.w3.org/2000/svg"
}), title && /*#__PURE__*/React.createElement("title", null, title), props.children);
};
return IconContext !== undefined ? /*#__PURE__*/React.createElement(IconContext.Consumer, null, conf => elem(conf)) : elem(DefaultContext);
}

10
node_modules/react-icons/lib/iconContext.d.ts generated vendored Normal file
View 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>;

16
node_modules/react-icons/lib/iconContext.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IconContext = exports.DefaultContext = void 0;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var DefaultContext = exports.DefaultContext = {
color: undefined,
size: undefined,
className: undefined,
style: undefined,
attr: undefined
};
var IconContext = exports.IconContext = _react.default.createContext && /*#__PURE__*/_react.default.createContext(DefaultContext);

9
node_modules/react-icons/lib/iconContext.mjs generated vendored Normal file
View 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 && /*#__PURE__*/React.createContext(DefaultContext);

8
node_modules/react-icons/lib/iconsManifest.d.ts generated vendored Normal file
View 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/iconsManifest.js generated vendored Normal file
View 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": "MIT",
"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"
}
]

219
node_modules/react-icons/lib/iconsManifest.mjs generated vendored Normal file
View 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": "MIT",
"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/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
export * from "./iconsManifest";
export * from "./iconBase";
export * from "./iconContext";

38
node_modules/react-icons/lib/index.js generated vendored Normal file
View File

@ -0,0 +1,38 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _iconsManifest = require("./iconsManifest");
Object.keys(_iconsManifest).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _iconsManifest[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function get() {
return _iconsManifest[key];
}
});
});
var _iconBase = require("./iconBase");
Object.keys(_iconBase).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _iconBase[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function get() {
return _iconBase[key];
}
});
});
var _iconContext = require("./iconContext");
Object.keys(_iconContext).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _iconContext[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function get() {
return _iconContext[key];
}
});
});

3
node_modules/react-icons/lib/index.mjs generated vendored Normal file
View File

@ -0,0 +1,3 @@
export * from "./iconsManifest.mjs";
export * from "./iconBase.mjs";
export * from "./iconContext.mjs";

4
node_modules/react-icons/lib/package.json generated vendored Normal file
View File

@ -0,0 +1,4 @@
{
"main": "./index.js",
"module": "./index.mjs"
}